У меня есть два python файла, testing_1.py
и testing_2.py
. Затем я создал карту конфигурации с testing-config1
для хранения testing_1.py
и testing-config2
для хранения testing_2.py
соответственно.
В Kubernetes yaml,
...
containers:
- name: spark-master
image: bde2020/spark-master:2.4.4-hadoop2.7
volumeMounts:
- name: testing
mountPath: /jobs
- name: testing2
mountPath: /jobs
volumes:
- name: testing
configMap:
name: testing-config1
- name: testing2
configMap:
name: testing-config2
...
В конечном результате , путь содержит только testing_1.py.