Correct container ports
This commit is contained in:
parent
25b28bdb3b
commit
953fb45d41
8 changed files with 16 additions and 9 deletions
|
@ -18,9 +18,10 @@ spec:
|
|||
- name: taiga-async
|
||||
image: taigaio/taiga-back:latest
|
||||
imagePullPolicy: IfNotPresent
|
||||
command: ["async_entrypoint.sh"]
|
||||
command: ["async_entrypoint.sh"] # ToDo: Fix execution path
|
||||
ports:
|
||||
- containerPort: 80
|
||||
- name: http
|
||||
containerPort: 8000
|
||||
volumeMounts:
|
||||
- name: taiga-static
|
||||
mountPath: /taiga-back/static
|
||||
|
|
|
@ -19,7 +19,8 @@ spec:
|
|||
image: rabbitmq:3.8-management-alpine
|
||||
imagePullPolicy: IfNotPresent
|
||||
ports:
|
||||
- containerPort: 80
|
||||
- name: amqp
|
||||
containerPort: 5672
|
||||
volumeMounts:
|
||||
- name: taiga-async-rabbitmq-data
|
||||
mountPath: /var/lib/rabbitmq
|
||||
|
|
|
@ -67,7 +67,8 @@ spec:
|
|||
image: taigaio/taiga-back:latest
|
||||
imagePullPolicy: IfNotPresent
|
||||
ports:
|
||||
- containerPort: 80 # ToDo: Check container ports
|
||||
- name: http
|
||||
containerPort: 8000
|
||||
volumeMounts:
|
||||
- name: taiga-static
|
||||
mountPath: /taiga-back/static
|
||||
|
|
|
@ -19,7 +19,8 @@ spec:
|
|||
image: taigaio/taiga-events:latest
|
||||
imagePullPolicy: IfNotPresent
|
||||
ports:
|
||||
- containerPort: 80
|
||||
- name: http
|
||||
containerPort: 8888
|
||||
envFrom: # ToDo: check if all vars are needed
|
||||
- configMapRef:
|
||||
name: taiga-back-configmap
|
||||
|
|
|
@ -19,7 +19,8 @@ spec:
|
|||
image: rabbitmq:3.8-management-alpine
|
||||
imagePullPolicy: IfNotPresent
|
||||
ports:
|
||||
- containerPort: 80
|
||||
- name: amqp
|
||||
containerPort: 5672
|
||||
volumeMounts:
|
||||
- name: taiga-events-rabbitmq-data
|
||||
mountPath: /var/lib/rabbitmq
|
||||
|
|
|
@ -19,7 +19,8 @@ spec:
|
|||
image: taigaio/taiga-front:latest
|
||||
imagePullPolicy: IfNotPresent
|
||||
ports:
|
||||
- containerPort: 80
|
||||
- name: http
|
||||
containerPort: 80
|
||||
env:
|
||||
- name: TAIGA_URL
|
||||
value: TAGA_SCHEME://TAIGA_DOMAIN
|
||||
|
|
|
@ -21,7 +21,7 @@ spec:
|
|||
imagePullPolicy: IfNotPresent
|
||||
ports:
|
||||
- name: http
|
||||
- containerPort: 80 # ToDo: Check container ports everywhere
|
||||
containerPort: 80
|
||||
volumeMounts:
|
||||
- mountPath: /etc/nginx/conf.d
|
||||
name: taiga-gateway-configmap
|
||||
|
|
|
@ -19,7 +19,8 @@ spec:
|
|||
image: taigaio/taiga-protected:latest
|
||||
imagePullPolicy: IfNotPresent
|
||||
ports:
|
||||
- containerPort: 80
|
||||
- name: http
|
||||
containerPort: 8003
|
||||
envFrom: # ToDo secret key ref - secret_key
|
||||
- secretRef:
|
||||
name: taiga-back-secret
|
||||
|
|
Loading…
Reference in a new issue