Add initContainer
This commit is contained in:
parent
b7fe9aa309
commit
83071350bc
1 changed files with 34 additions and 0 deletions
|
@ -14,6 +14,40 @@ spec:
|
||||||
labels:
|
labels:
|
||||||
app: taiga
|
app: taiga
|
||||||
spec:
|
spec:
|
||||||
|
initContainers:
|
||||||
|
- name: taiga-manage
|
||||||
|
image: taigaio/taiga-back:latest
|
||||||
|
imagePullPolicy: IfNotPresent
|
||||||
|
ports:
|
||||||
|
- containerPort: 80
|
||||||
|
command: ["async_entrypoint.sh"]
|
||||||
|
volumeMounts:
|
||||||
|
- name: taiga-static
|
||||||
|
mountPath: /taiga-back/static
|
||||||
|
readOnly: false
|
||||||
|
- name: taiga-media
|
||||||
|
mountPath: /taiga-back/media
|
||||||
|
readOnly: false
|
||||||
|
env:
|
||||||
|
- name: POSTGRES_USER # ToDo: does taiga need a specific postgres version?
|
||||||
|
valueFrom: # ToDo: which env vars are needed by taiga-back and taiga-async
|
||||||
|
secretKeyRef: # ToDo: If all env vars are needed by taiga-back a config-map would be suitable
|
||||||
|
name: postgres-secret
|
||||||
|
key: postgres-user
|
||||||
|
- name: POSTGRES_PASSWORD
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: postgres-secret
|
||||||
|
key: postgres-password
|
||||||
|
- name: POSTGRES_DB
|
||||||
|
valueFrom:
|
||||||
|
configMapKeyRef:
|
||||||
|
name: postgres-config
|
||||||
|
key: postgres-db
|
||||||
|
- name: POSTGRES_HOST
|
||||||
|
value: "postgresql-service"
|
||||||
|
- name: POSTGRES_PORT
|
||||||
|
value: 5432
|
||||||
containers:
|
containers:
|
||||||
- name: taiga-back
|
- name: taiga-back
|
||||||
image: taigaio/taiga-back:latest
|
image: taigaio/taiga-back:latest
|
||||||
|
|
Loading…
Reference in a new issue