Correct container ports

This commit is contained in:
erik 2023-08-10 12:52:05 +02:00
parent 25b28bdb3b
commit 953fb45d41
8 changed files with 16 additions and 9 deletions

View file

@ -18,9 +18,10 @@ spec:
- name: taiga-async - name: taiga-async
image: taigaio/taiga-back:latest image: taigaio/taiga-back:latest
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
command: ["async_entrypoint.sh"] command: ["async_entrypoint.sh"] # ToDo: Fix execution path
ports: ports:
- containerPort: 80 - name: http
containerPort: 8000
volumeMounts: volumeMounts:
- name: taiga-static - name: taiga-static
mountPath: /taiga-back/static mountPath: /taiga-back/static

View file

@ -19,7 +19,8 @@ spec:
image: rabbitmq:3.8-management-alpine image: rabbitmq:3.8-management-alpine
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
ports: ports:
- containerPort: 80 - name: amqp
containerPort: 5672
volumeMounts: volumeMounts:
- name: taiga-async-rabbitmq-data - name: taiga-async-rabbitmq-data
mountPath: /var/lib/rabbitmq mountPath: /var/lib/rabbitmq

View file

@ -67,7 +67,8 @@ spec:
image: taigaio/taiga-back:latest image: taigaio/taiga-back:latest
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
ports: ports:
- containerPort: 80 # ToDo: Check container ports - name: http
containerPort: 8000
volumeMounts: volumeMounts:
- name: taiga-static - name: taiga-static
mountPath: /taiga-back/static mountPath: /taiga-back/static

View file

@ -19,7 +19,8 @@ spec:
image: taigaio/taiga-events:latest image: taigaio/taiga-events:latest
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
ports: ports:
- containerPort: 80 - name: http
containerPort: 8888
envFrom: # ToDo: check if all vars are needed envFrom: # ToDo: check if all vars are needed
- configMapRef: - configMapRef:
name: taiga-back-configmap name: taiga-back-configmap

View file

@ -19,7 +19,8 @@ spec:
image: rabbitmq:3.8-management-alpine image: rabbitmq:3.8-management-alpine
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
ports: ports:
- containerPort: 80 - name: amqp
containerPort: 5672
volumeMounts: volumeMounts:
- name: taiga-events-rabbitmq-data - name: taiga-events-rabbitmq-data
mountPath: /var/lib/rabbitmq mountPath: /var/lib/rabbitmq

View file

@ -19,7 +19,8 @@ spec:
image: taigaio/taiga-front:latest image: taigaio/taiga-front:latest
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
ports: ports:
- containerPort: 80 - name: http
containerPort: 80
env: env:
- name: TAIGA_URL - name: TAIGA_URL
value: TAGA_SCHEME://TAIGA_DOMAIN value: TAGA_SCHEME://TAIGA_DOMAIN

View file

@ -21,7 +21,7 @@ spec:
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
ports: ports:
- name: http - name: http
- containerPort: 80 # ToDo: Check container ports everywhere containerPort: 80
volumeMounts: volumeMounts:
- mountPath: /etc/nginx/conf.d - mountPath: /etc/nginx/conf.d
name: taiga-gateway-configmap name: taiga-gateway-configmap

View file

@ -19,7 +19,8 @@ spec:
image: taigaio/taiga-protected:latest image: taigaio/taiga-protected:latest
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
ports: ports:
- containerPort: 80 - name: http
containerPort: 8003
envFrom: # ToDo secret key ref - secret_key envFrom: # ToDo secret key ref - secret_key
- secretRef: - secretRef:
name: taiga-back-secret name: taiga-back-secret