Skip to content

Commit

Permalink
Fix port in chart
Browse files Browse the repository at this point in the history
  • Loading branch information
ruanbekker committed Mar 20, 2023
1 parent 674b4d1 commit 694a94e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion deployment/helm/simple-chart/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ spec:
imagePullPolicy: {{ .Values.image.pullPolicy }}
ports:
- name: http
containerPort: 80
containerPort: {{ .Values.container.port | default 5000 }}
protocol: TCP
livenessProbe:
httpGet:
Expand Down
3 changes: 3 additions & 0 deletions deployment/helm/simple-chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ service:
ingress:
enabled: false

container:
port: 5000

resources:
limits:
cpu: 200m
Expand Down

0 comments on commit 694a94e

Please sign in to comment.