Last active
January 23, 2023 20:01
-
-
Save jeff-french/8f465464e7fd8a77c51d0397b99b80ed to your computer and use it in GitHub Desktop.
ConfigMap Examples
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment