Skip to content

Commit 6034b41

Browse files
committed
rebase on an early commit of #250 and implement e2e tests
Signed-off-by: Bryce Palmer <[email protected]>
1 parent fc7729e commit 6034b41

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
FROM scratch
2+
COPY manifests /manifests
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# This configmap was pulled straight from the Kubernetes docs
2+
# 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

Comments
 (0)