mirror of
https://github.com/marcel-dempers/docker-development-youtube-series.git
synced 2025-06-06 17:01:30 +00:00
11 lines
210 B
YAML
11 lines
210 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: example-config
|
|
data:
|
|
config.json: |
|
|
{
|
|
"environment" : "dev"
|
|
}
|
|
# kubectl create configmap example-config --from-file ./golang/configs/config.json
|