Skip to content
This repository was archived by the owner on Mar 14, 2026. It is now read-only.

Commit ca6cf58

Browse files
committed
fix(helm): correct port for rust employee-scheduling to 7860
The Rust employee-scheduling quickstart runs on port 7860, not 8080. Update values.yaml and template the containerPort in deployment.yaml.
1 parent f2b90d3 commit ca6cf58

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

rust/employee-scheduling/helm/employee-scheduling/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ spec:
3737
imagePullPolicy: {{ .Values.image.pullPolicy }}
3838
ports:
3939
- name: http
40-
containerPort: 8080
40+
containerPort: {{ .Values.service.port }}
4141
protocol: TCP
4242
{{- with .Values.livenessProbe }}
4343
livenessProbe:

rust/employee-scheduling/helm/employee-scheduling/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ securityContext: {}
1818

1919
service:
2020
type: ClusterIP
21-
port: 8080
21+
port: 7860
2222

2323
ingress:
2424
enabled: false

0 commit comments

Comments
 (0)