10 lines
184 B
YAML
10 lines
184 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: app-config
|
|
data:
|
|
APP_COLOR: blue
|
|
APP_MODE: production
|
|
# oops, this key should be APP_VERSION but it's wrong
|
|
APP_VERSOIN: "1.0"
|