We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc7729e commit 6034b41Copy full SHA for 6034b41
testdata/bundles/plain-v0/plain.v0.1.0/Dockerfile
@@ -0,0 +1,2 @@
1
+FROM scratch
2
+COPY manifests /manifests
testdata/bundles/plain-v0/plain.v0.1.0/manifests/configmap.yaml
@@ -0,0 +1,19 @@
+# This configmap was pulled straight from the Kubernetes docs
+# and can be found at https://kubernetes.io/docs/concepts/configuration/configmap/
3
+apiVersion: v1
4
+kind: ConfigMap
5
+metadata:
6
+ name: game-demo
7
+data:
8
+ # property-like keys; each key maps to a simple value
9
+ player_initial_lives: "3"
10
+ ui_properties_file_name: "user-interface.properties"
11
+
12
+ # file-like keys
13
+ game.properties: |
14
+ enemy.types=aliens,monsters
15
+ player.maximum-lives=5
16
+ user-interface.properties: |
17
+ color.good=purple
18
+ color.bad=yellow
19
+ allow.textmode=true
0 commit comments