मैं इस काम के उदाहरण के साथ यहाँ से शुरू करता हूँ । सुनिश्चित करें कि आप कम से कम Kubernetes 1.3 का उपयोग कर रहे हैं।
बस इस तरह एक configMap बनाएँ:
apiVersion: v1
kind: ConfigMap
metadata:
name: test-pd-plus-cfgmap
data:
file-from-cfgmap: file data
और फिर इस तरह एक फली बनाएं:
apiVersion: v1
kind: Pod
metadata:
name: test-pd-plus-cfgmap
spec:
containers:
- image: ubuntu
name: bash
stdin: true
stdinOnce: true
tty: true
volumeMounts:
- mountPath: /mnt
name: pd
- mountPath: /mnt/file-from-cfgmap
name: cfgmap
subPath: file-from-cfgmap
volumes:
- name: pd
gcePersistentDisk:
pdName: testdisk
- name: cfgmap
configMap:
name: test-pd-plus-cfgmap