385a8a099e
* start.sh was added back, which had requiring sourcing * the naming convention for charts is finalized with this example landing on configmap-*.yaml to satisfy those of us with OCD * imagePullPolicies added for init-containers, required by helm 2.1.0 which does not supply them by default
12 lines
310 B
YAML
12 lines
310 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: keystone-bin
|
|
data:
|
|
db-sync.sh: |
|
|
{{ tuple "bin/_db-sync.sh.tpl" . | include "template" | indent 4 }}
|
|
init.sh: |
|
|
{{ tuple "bin/_init.sh.tpl" . | include "template" | indent 4 }}
|
|
start.sh: |
|
|
{{ tuple "bin/_start.sh.tpl" . | include "template" | indent 4 }}
|