Skip to content

Commit

Permalink
Revert "reverted two parts of the configuration to bisect if helm is …
Browse files Browse the repository at this point in the history
…unhappy with them"

This reverts commit bf6fc2a.
  • Loading branch information
CommanderStorm committed Sep 30, 2023
1 parent c35500a commit c84546b
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions deployment/charts/backend/templates/deployments/backend-v2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,44 @@ spec:
- name: backend-api-keys
secret:
secretName: backend-api-keys
- name: backend-grpc-web-config
configMap:
name: backend-grpc-web-config
containers:
- name: grpc-web-proxy
image: envoyproxy/envoy:v1.27-latest
imagePullPolicy: IfNotPresent
args:
- --config-path
- /etc/envoy/envoy.yaml
- --service-cluster
- backend-v2
- --service-node
- backend-v2
- --log-level
- info
ports:
- containerPort: 8081
name: http
- containerPort: 9901
name: admin
volumeMounts:
- mountPath: /etc/envoy/envoy.yaml
subPath: envoy.yaml
name: backend-grpc-web-config
readOnly: true
livenessProbe:
httpGet:
path: /health
port: admin
failureThreshold: 5
periodSeconds: 1
startupProbe:
httpGet:
path: /health
port: admin
failureThreshold: 60
periodSeconds: 1
- name: tca-backend
image: ghcr.io/tum-dev/campus-backend/backend-server:{{ $.Values.tag }}
imagePullPolicy: Always
Expand Down

0 comments on commit c84546b

Please sign in to comment.