diff --git a/helm/templates/deployment.yaml b/helm/templates/deployment.yaml index 96fd4d4..42962f4 100644 --- a/helm/templates/deployment.yaml +++ b/helm/templates/deployment.yaml @@ -27,10 +27,10 @@ spec: securityContext: {{- toYaml .Values.podSecurityContext | nindent 8 }} containers: - - name: {{ .Chart.Name }} + - name: heart-front securityContext: {{- toYaml .Values.securityContext | nindent 12 }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + image: "{{ .Values.image.static }}" imagePullPolicy: {{ .Values.image.pullPolicy }} ports: - name: http @@ -46,6 +46,23 @@ spec: port: http resources: {{- toYaml .Values.resources | nindent 12 }} + - name: heart-api + securityContext: + {{- toYaml .Values.securityContext | nindent 12 }} + image: "{{ .Values.image.api }}" + imagePullPolicy: {{ .Values.image.pullPolicy }} + ports: + - name: api + containerPort: 3000 + protocol: TCP + livenessProbe: + tcpSocket: + port: api + readinessProbe: + tcpSocket: + port: api + resources: + {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} diff --git a/helm/values.yaml b/helm/values.yaml index 0551991..c6bd45c 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -5,10 +5,9 @@ replicaCount: 1 image: - repository: nginx + api: bgatellier/heart-novit:1.1 + static: mcluseau/heart-front:1.0 pullPolicy: IfNotPresent - # Overrides the image tag whose default is the chart appVersion. - tag: "" imagePullSecrets: [] nameOverride: ""