diff --git a/manifests/function/helm-chart-collator/helm-chart-collator.yaml b/manifests/function/helm-chart-collator/helm-chart-collator.yaml new file mode 100644 index 000000000..b56cd1471 --- /dev/null +++ b/manifests/function/helm-chart-collator/helm-chart-collator.yaml @@ -0,0 +1,40 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: collator +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: helm-chart-collator + namespace: collator +spec: + selector: + matchLabels: + app: helm-chart-collator + replicas: 2 + template: + metadata: + labels: + app: helm-chart-collator + spec: + containers: + - name: helm-chart-collator + image: quay.io/airshipit/helm-chart-collator:latest + ports: + - containerPort: 8080 +--- +apiVersion: v1 +kind: Service +metadata: + labels: + app: helm-chart-collator + name: helm-chart-collator + namespace: collator +spec: + ports: + - port: 8080 + targetPort: 8080 + selector: + app: helm-chart-collator + type: ClusterIP diff --git a/manifests/function/helm-chart-collator/kustomization.yaml b/manifests/function/helm-chart-collator/kustomization.yaml new file mode 100644 index 000000000..ccc1737c0 --- /dev/null +++ b/manifests/function/helm-chart-collator/kustomization.yaml @@ -0,0 +1,5 @@ +apiVersion: kustomize.config.k8s.io/v1beta1 +kind: Kustomization + +resources: + - helm-chart-collator.yaml