Skip to content

Commit

Permalink
fix(charts): ports IV
Browse files Browse the repository at this point in the history
  • Loading branch information
thejoeejoee committed Nov 11, 2023
1 parent 49b6752 commit eb80cb1
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
4 changes: 2 additions & 2 deletions charts/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
service:
name: web
port:
number: 80
name: http
- host: "{{ .Values.ingress.host }}"
http:
paths:
Expand All @@ -34,4 +34,4 @@ spec:
service:
name: web
port:
number: 80
name: http
34 changes: 17 additions & 17 deletions charts/templates/web-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit eb80cb1

Please sign in to comment.