diff --git a/charts/templates/ingress.yaml b/charts/templates/ingress.yaml index fbef3ace..f2fc091b 100644 --- a/charts/templates/ingress.yaml +++ b/charts/templates/ingress.yaml @@ -24,7 +24,7 @@ spec: service: name: web port: - number: 80 + name: http - host: "{{ .Values.ingress.host }}" http: paths: @@ -34,4 +34,4 @@ spec: service: name: web port: - number: 80 + name: http diff --git a/charts/templates/web-deployment.yaml b/charts/templates/web-deployment.yaml index ea5e481b..67fe3a0b 100644 --- a/charts/templates/web-deployment.yaml +++ b/charts/templates/web-deployment.yaml @@ -24,23 +24,23 @@ spec: - containerPort: {{ .Values.web.port }} protocol: TCP name: web - readinessProbe: - initialDelaySeconds: 5 - httpGet: - path: "/!/web" - port: web - httpHeaders: - - name: Host - value: {{ .Values.ingress.host | quote }} - livenessProbe: - initialDelaySeconds: 5 - periodSeconds: 20 - httpGet: - path: "/!/web" - port: web - httpHeaders: - - name: Host - value: {{ .Values.ingress.host | quote }} +{{/* readinessProbe:*/}} +{{/* initialDelaySeconds: 5*/}} +{{/* httpGet:*/}} +{{/* path: "/!/web"*/}} +{{/* port: web*/}} +{{/* httpHeaders:*/}} +{{/* - name: Host*/}} +{{/* value: {{ .Values.ingress.host | quote }}*/}} +{{/* livenessProbe:*/}} +{{/* initialDelaySeconds: 5*/}} +{{/* periodSeconds: 20*/}} +{{/* httpGet:*/}} +{{/* path: "/!/web"*/}} +{{/* port: web*/}} +{{/* httpHeaders:*/}} +{{/* - name: Host*/}} +{{/* value: {{ .Values.ingress.host | quote }}*/}} envFrom: - secretRef: name: {{ .Values.web.secretName }}