feat(argocd-applicationset): Update to app version v0.3.0 (#1070)

This commit is contained in:
Edward Nys 2022-01-06 19:35:42 +01:00 committed by GitHub
parent f518712c33
commit e7a27468b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 10130 additions and 2890 deletions

View file

@ -56,6 +56,9 @@ spec:
- name: metrics
containerPort: {{ (split ":" .Values.args.metricsAddr)._1 }}
protocol: TCP
- name: webhook
containerPort: 7000
protocol: TCP
resources:
{{- toYaml .Values.resources | nindent 12 }}
volumeMounts:

View file

@ -0,0 +1,14 @@
apiVersion: v1
kind: Service
metadata:
name: {{ include "argo-applicationset.fullname" . }}
labels:
{{- include "argo-applicationset.labels" . | nindent 4 }}
spec:
ports:
- name: webhook
port: 7000
protocol: TCP
targetPort: webhook
selector:
{{- include "argo-applicationset.selectorLabels" . | nindent 6 }}