Skip to content

Commit 56235f3

Browse files
committed
fix: deduplicate mount volume name
1 parent b30b456 commit 56235f3

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

tutoraspects/patches/k8s-deployments

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ spec:
217217
- mountPath: /app/pythonpath
218218
name: pythonpath
219219
- mountPath: /app/pythonpath/openedx
220-
name: pythonpath
220+
name: pythonpath-openedx
221221
- mountPath: /app/security
222222
name: security
223223
volumes:
@@ -311,7 +311,7 @@ spec:
311311
- mountPath: /app/pythonpath
312312
name: pythonpath
313313
- mountPath: /app/pythonpath/openedx
314-
name: pythonpath
314+
name: pythonpath-openedx
315315
- mountPath: /app/security
316316
name: security
317317
- mountPath: /app/scripts
@@ -410,7 +410,7 @@ spec:
410410
- mountPath: /app/pythonpath
411411
name: pythonpath
412412
- mountPath: /app/pythonpath/openedx
413-
name: pythonpath
413+
name: pythonpath-openedx
414414
- mountPath: /app/security
415415
name: security
416416
volumes:

tutoraspects/patches/k8s-jobs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ spec:
163163
- mountPath: /app/pythonpath
164164
name: pythonpath
165165
- mountPath: /app/pythonpath/openedx
166-
name: pythonpath
166+
name: pythonpath-openedx
167167
- mountPath: /app/security
168168
name: security
169169
- mountPath: /app/assets
@@ -252,7 +252,7 @@ spec:
252252
- mountPath: /app/pythonpath
253253
name: pythonpath
254254
- mountPath: /app/pythonpath/openedx
255-
name: pythonpath
255+
name: pythonpath-openedx
256256
- mountPath: /app/security
257257
name: security
258258
- mountPath: /app/assets

tutoraspects/patches/kustomization-configmapgenerator

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,14 +74,14 @@
7474
app.kubernetes.io/name: superset
7575

7676
- name: superset-pythonpath
77-
files:{% for file in "aspects/apps/superset/pythonpath"|walk_templates %}
77+
files:{% for file in "aspects/apps/superset/pythonpath/"|walk_templates %}
7878
- plugins/{{ file }}{% endfor %}
7979
options:
8080
labels:
8181
app.kubernetes.io/name: superset
8282

8383
- name: superset-pythonpath-openedx
84-
files:{% for file in "aspects/apps/superset/pythonpath/openedx"|walk_templates %}
84+
files:{% for file in "aspects/apps/superset/pythonpath/openedx/"|walk_templates %}
8585
- plugins/{{ file }}{% endfor %}
8686
options:
8787
labels:

0 commit comments

Comments
 (0)