Update oramap to work with mongo
This commit is contained in:
parent
971e229e22
commit
4191e3b7e6
@ -24,6 +24,10 @@ spec:
|
||||
release: {{ .Release.Name }}
|
||||
component: backend
|
||||
spec:
|
||||
{{- with .Values.imagePullSecrets }}
|
||||
imagePullSecrets:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
containers:
|
||||
- name: backend
|
||||
image: "{{ .Values.backend.image.repository }}:{{ .Values.backend.image.tag }}"
|
||||
@ -80,6 +84,10 @@ spec:
|
||||
release: {{ .Release.Name }}
|
||||
component: frontend
|
||||
spec:
|
||||
{{- with .Values.imagePullSecrets }}
|
||||
imagePullSecrets:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
containers:
|
||||
- name: frontend
|
||||
image: "{{ .Values.frontend.image.repository }}:{{ .Values.frontend.image.tag }}"
|
||||
|
||||
@ -19,6 +19,10 @@ spec:
|
||||
{{- include "oramap.selectorLabels" . | nindent 8 }}
|
||||
app.kubernetes.io/component: database
|
||||
spec:
|
||||
{{- with .Values.imagePullSecrets }}
|
||||
imagePullSecrets:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
containers:
|
||||
- name: mongodb
|
||||
image: "{{ .Values.mongodb.image.repository }}:{{ .Values.mongodb.image.tag }}"
|
||||
|
||||
@ -1,5 +1,7 @@
|
||||
replicaCount: 1
|
||||
|
||||
imagePullSecrets: []
|
||||
|
||||
# Backend API configuration
|
||||
backend:
|
||||
image:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user