tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Container Management > Kubernetes > How to create Kubernetes ConfigMap from Literal Values

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
02configmap/abc-configmap created
03 
04$ kubectl get configmaps abc-configmap -o yaml
05apiVersion: v1
06data:
07  aws.access.key: AAAAAAAAAA
08  aws.secret.key: BBBBBBBBBB
09kind: ConfigMap
10metadata:
11  creationTimestamp: "2021-03-06T21:15:33Z"
12  name: abc-configmap
13  namespace: default
14  resourceVersion: "6077"
15  selfLink: /api/v1/namespaces/default/configmaps/abc-configmap
16  uid: cd26fce7-0762-4e62-9add-46592ca270f7

 
  


  
bl  br