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 Files

How to create Kubernetes ConfigMap from Files

Author: Venkata Sudhakar

The below example shows how to create Kubernetes ConfigMap from a file.

01$ cat example-cfg.yml
02kind: ConfigMap
03apiVersion: v1
04metadata:
05  name: example-configmap
06data:
07  # Configuration values can be set as key-value properties
08  database: mysql
09  username: abcd
10  connection.url: jdbc:mysql://localhost:3306/bethecoder
11   
12  # Or set as complete file contents (even JSON!)
13  keys: |
14    aws.access.key=AAAAAAAAAA
15    aws.secret.key=BBBBBBBBBB
16 
17 
18$ kubectl apply -f example-cfg.yml
19configmap/example-configmap created

 
  


  
bl  br