Difference between revisions of "Kind: ConfigMap"
Jump to navigation
Jump to search
Line 20: | Line 20: | ||
real-ip-header: "proxy_protocol" | real-ip-header: "proxy_protocol" | ||
set-real-ip-from: "0.0.0.0/0" | set-real-ip-from: "0.0.0.0/0" | ||
+ | |||
+ | <pre> | ||
+ | apiVersion: v1 | ||
+ | kind: ConfigMap | ||
+ | metadata: | ||
+ | name: game-demo | ||
+ | data: | ||
+ | # property-like keys; each key maps to a simple value | ||
+ | player_initial_lives: "3" | ||
+ | ui_properties_file_name: "user-interface.properties" | ||
+ | |||
+ | # file-like keys | ||
+ | game.properties: | | ||
+ | enemy.types=aliens,monsters | ||
+ | player.maximum-lives=5 | ||
+ | user-interface.properties: | | ||
+ | color.good=purple | ||
+ | color.bad=yellow | ||
+ | allow.textmode=true | ||
+ | </pre> | ||
== Related == | == Related == |
Revision as of 14:35, 4 July 2022
ConfigMap
apiVersion: v1 kind: ConfigMap metadata: ... data: ... immutable: true
kind: ConfigMap apiVersion: v1 metadata: name: nginx-config namespace: nginx-ingress data: proxy-protocol: "True" real-ip-header: "proxy_protocol" set-real-ip-from: "0.0.0.0/0"
apiVersion: v1 kind: ConfigMap metadata: name: game-demo data: # property-like keys; each key maps to a simple value player_initial_lives: "3" ui_properties_file_name: "user-interface.properties" # file-like keys game.properties: | enemy.types=aliens,monsters player.maximum-lives=5 user-interface.properties: | color.good=purple color.bad=yellow allow.textmode=true
Related
See also
kind:
[Pod | Ingress | ClusterConfiguration
|Config | ConfigMap | ServiceAccount | Deployment | List | Secret | Status ], spec: metadata: data:
Advertising: