Browse Source

Fixes for AKS

pull/1857/head
Nish Anil 3 years ago
parent
commit
080a33bab8
2 changed files with 6 additions and 2 deletions
  1. +1
    -1
      deploy/k8s/helm/apigwws/envoy.yaml
  2. +5
    -1
      deploy/k8s/helm/apigwws/templates/deployment.yaml

+ 1
- 1
deploy/k8s/helm/apigwws/envoy.yaml View File

@ -9,7 +9,7 @@ static_resources:
- address:
socket_address:
address: 0.0.0.0
port_value: 80
port_value: 8080
filter_chains:
- filters:
- name: envoy.filters.network.http_connection_manager


+ 5
- 1
deploy/k8s/helm/apigwws/templates/deployment.yaml View File

@ -26,6 +26,10 @@ spec:
linkerd.io/inject: enabled
{{- end }}
spec:
securityContext:
runAsUser: 2000
runAsGroup: 3000
fsGroup: 2000
{{ if .Values.inf.registry -}}
imagePullSecrets:
- name: {{ .Values.inf.registry.secretName }}
@ -87,7 +91,7 @@ spec:
{{- end }}
ports:
- name: http
containerPort: 80
containerPort: 8080
protocol: TCP
- name: admin
containerPort: 8001


Loading…
Cancel
Save