forked from operator-framework/operator-controller
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rebase on an early commit of operator-framework#250 and implement e2e…
… tests Signed-off-by: Bryce Palmer <[email protected]>
- Loading branch information
1 parent
aedd8af
commit f3ad11c
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
FROM scratch | ||
COPY manifests /manifests |
19 changes: 19 additions & 0 deletions
19
testdata/bundles/plain-v0/plain.v0.1.0/manifests/configmap.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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/ | ||
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 |