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

Commit c187de6

Browse files
committed
Fix k8s deployment files config path
- Change config map mounts in both skipper/dataflow from `/config` to `/workspace/config` as that a pwd of new images for running server. - Fixes #4514
1 parent ab3560d commit c187de6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/kubernetes/server/server-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spec:
2020
imagePullPolicy: Always
2121
volumeMounts:
2222
- name: config
23-
mountPath: /config
23+
mountPath: /workspace/config
2424
readOnly: true
2525
- name: database
2626
mountPath: /etc/secrets/database

src/kubernetes/skipper/skipper-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spec:
2020
imagePullPolicy: Always
2121
volumeMounts:
2222
- name: config
23-
mountPath: /config
23+
mountPath: /workspace/config
2424
readOnly: true
2525
- name: database
2626
mountPath: /etc/secrets/database

src/templates/kubernetes/server/server-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spec:
2020
imagePullPolicy: Always
2121
volumeMounts:
2222
- name: config
23-
mountPath: /config
23+
mountPath: /workspace/config
2424
readOnly: true
2525
- name: database
2626
mountPath: /etc/secrets/database

src/templates/kubernetes/skipper/skipper-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spec:
2020
imagePullPolicy: Always
2121
volumeMounts:
2222
- name: config
23-
mountPath: /config
23+
mountPath: /workspace/config
2424
readOnly: true
2525
- name: database
2626
mountPath: /etc/secrets/database

0 commit comments

Comments
 (0)