
* Update image and tag for argo events deployments Signed-off-by: Paul Ayling <paul.ayling@sky.uk> * Update Nats images Signed-off-by: Paul Ayling <paul.ayling@sky.uk> * Update sensorImage and eventSourceImage Signed-off-by: Paul Ayling <paul.ayling@sky.uk> * Update Chart.yaml Signed-off-by: Paul Ayling <paul.ayling@sky.uk> * Place new argument at end to work with old images Signed-off-by: Paul Ayling <paul.ayling@sky.uk> * Update chart appversion and RBAC Signed-off-by: Paul Ayling <paulayling.dev@gmail.com> * Apply suggestions from code review Co-authored-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> Signed-off-by: Paul Ayling <paulayling.dev@gmail.com> * Default to Chart AppVersion if tag does not exist Signed-off-by: Paul Ayling <paulayling.dev@gmail.com> * Update Chart AppVersion to v1.5.0 Signed-off-by: Paul Ayling <paulayling.dev@gmail.com> * Update changelog Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> Co-authored-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>
80 lines
3 KiB
YAML
80 lines
3 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: {{ .Release.Name }}-{{ .Values.sensorController.name }}
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
app: {{ .Release.Name }}-{{ .Values.sensorController.name }}
|
|
chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
|
|
release: {{ .Release.Name }}
|
|
heritage: {{ .Release.Service }}
|
|
spec:
|
|
replicas: {{ .Values.sensorController.replicaCount }}
|
|
selector:
|
|
matchLabels:
|
|
app: {{ .Release.Name }}-{{ .Values.sensorController.name }}
|
|
release: {{ .Release.Name }}
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: {{ .Release.Name }}-{{ .Values.sensorController.name }}
|
|
release: {{ .Release.Name }}
|
|
{{- with .Values.sensorController.podLabels }}
|
|
{{- tpl (toYaml .) $ | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.sensorController.podAnnotations }}
|
|
annotations: {{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
spec:
|
|
serviceAccountName: {{ .Values.serviceAccount }}
|
|
containers:
|
|
- name: {{ .Values.sensorController.name }}
|
|
image: "{{ .Values.registry }}/{{ .Values.sensorController.image }}:{{ .Values.sensorController.tag | default .Chart.AppVersion }}"
|
|
imagePullPolicy: {{ .Values.imagePullPolicy }}
|
|
args:
|
|
- sensor-controller
|
|
{{- if .Values.singleNamespace }}
|
|
- --namespaced
|
|
{{- end }}
|
|
env:
|
|
{{- with .Values.sensorController.extraEnv }}
|
|
{{- toYaml . | nindent 12 }}
|
|
{{- end }}
|
|
- name: NAMESPACE
|
|
valueFrom:
|
|
fieldRef:
|
|
fieldPath: metadata.namespace
|
|
- name: SENSOR_IMAGE
|
|
value: "{{ .Values.registry }}/{{ .Values.sensorController.sensorImage }}:{{ .Values.sensorController.tag | default .Chart.AppVersion }}"
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /healthz
|
|
port: 8081
|
|
initialDelaySeconds: 3
|
|
periodSeconds: 3
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /readyz
|
|
port: 8081
|
|
initialDelaySeconds: 3
|
|
periodSeconds: 3
|
|
resources: {{- toYaml .Values.sensorController.resources | nindent 12 }}
|
|
{{- with .Values.sensorController.priorityClassName }}
|
|
priorityClassName: {{ . | quote }}
|
|
{{- end }}
|
|
{{- 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 }}
|