From d2b189874bd136f9ec73664c8998b8f57af9b0a4 Mon Sep 17 00:00:00 2001 From: Jingfang Liu Date: Wed, 11 Jul 2018 14:00:07 -0700 Subject: [PATCH] update helloWorld example: change configmap to configmapGenerator --- examples/helloWorld/kustomization.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/examples/helloWorld/kustomization.yaml b/examples/helloWorld/kustomization.yaml index 6ad61c295..c0cfd1bfb 100644 --- a/examples/helloWorld/kustomization.yaml +++ b/examples/helloWorld/kustomization.yaml @@ -5,5 +5,10 @@ commonLabels: resources: - deployment.yaml -- configMap.yaml - service.yaml + +configMapGenerator: +- name: the-map + literals: + - altGreeting="Good Morning!" + - enableRisky="false"