| 1234567891011121314151617181920212223242526272829303132333435 |
- ---
- apiVersion: v1
- kind: Pod
- metadata:
- name: configmap-pod
- spec:
- containers:
- - name: test
- image: busybox
- volumeMounts:
- - name: config-vol
- mountPath: /etc/config
- volumes:
- - name: config-vol
- configMap:
- name: log-config
- items:
- - key: log_level
- path: log_level
- ---
- apiVersion: v1
- kind: ConfigMap
- metadata:
- creationTimestamp: 2016-02-18T18:52:05Z
- name: log-config
- namespace: default
- resourceVersion: "516"
- uid: b4952dc3-d670-11e5-8cd0-68f728db1985
- data:
- game.properties: |
- enemies=aliens
- lives=3
- secret.code.lives=30
- ui.properties: |
- color.good=purple
|