chore(argo-events): update argo-events to 1.2.3 (#553)

Co-authored-by: David J. M. Karlsen <david@davidkarlsen.com>
This commit is contained in:
smcavallo 2021-02-23 02:19:13 -05:00 committed by GitHub
parent 9e6d1134e8
commit 03cd06d6ee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 117 additions and 19 deletions

View file

@ -35,7 +35,31 @@ spec:
fieldPath: metadata.namespace
- name: SENSOR_IMAGE
value: "{{ .Values.registry }}/{{ .Values.sensorController.sensorImage }}:{{ .Values.sensorController.tag }}"
livenessProbe:
httpGet:
path: /healthz
port: 8081
initialDelaySeconds: 3
periodSeconds: 3
readinessProbe:
httpGet:
path: /readyz
port: 8081
initialDelaySeconds: 3
periodSeconds: 3
{{- with .Values.securityContext }}
securityContext: {{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- if .Values.sensorController.nodeSelector }}
nodeSelector: {{ toYaml .Values.sensorController.nodeSelector | nindent 8 }}
{{- end }}
{{- if .Values.sensorController.tolerations }}
tolerations: {{ toYaml .Values.sensorController.tolerations | nindent 8 }}
{{- end }}
{{- if .Values.sensorController.affinity }}
affinity: {{ toYaml .Values.sensorController.affinity | nindent 8 }}
{{- end }}