|
How to create Kubernetes ConfigMap from Literal Values
Author: Venkata Sudhakar
The below example shows how to create Kubernetes ConfigMap from Literal Values.
01 | $ kubectl create configmap abc-configmap --from-literal aws.access.key=AAAAAAAAAA --from-literal aws.secret.key=BBBBBBBBBB |
02 | configmap/abc-configmap created |
04 | $ kubectl get configmaps abc-configmap -o yaml |
07 | aws.access.key: AAAAAAAAAA |
08 | aws.secret.key: BBBBBBBBBB |
11 | creationTimestamp: "2021-03-06T21:15:33Z" |
14 | resourceVersion: "6077" |
15 | selfLink: /api/v1/namespaces/ default /configmaps/abc-configmap |
16 | uid: cd26fce7- 0762 -4e62-9add-46592ca270f7 |
|
|