From 282a3873eb2206fcc8ce134fc32de76412c6e40d Mon Sep 17 00:00:00 2001 From: Mike Elliott Date: Wed, 28 Feb 2018 09:55:14 -0500 Subject: Add Helm Chart "template" Starter Copy and rename onap-app dir to name of ONAP application being ported to standardized configuration format (2.0.0). Replace all <...> within the chart templates, Chart.yaml and values.yaml. MKhinda - updated after single namespace and refactor Change-Id: I9ef94839cb45a4698c1e125e3e0ca5243b929f13 Issue-ID: OOM-777 Signed-off-by: Mike Elliott --- kubernetes/helm/starters/onap-app/resources/config/README.txt | 10 ++++++++++ .../starters/onap-app/resources/config/application.properties | 1 + 2 files changed, 11 insertions(+) create mode 100644 kubernetes/helm/starters/onap-app/resources/config/README.txt create mode 100644 kubernetes/helm/starters/onap-app/resources/config/application.properties (limited to 'kubernetes/helm/starters/onap-app/resources') diff --git a/kubernetes/helm/starters/onap-app/resources/config/README.txt b/kubernetes/helm/starters/onap-app/resources/config/README.txt new file mode 100644 index 0000000000..5cc01497f5 --- /dev/null +++ b/kubernetes/helm/starters/onap-app/resources/config/README.txt @@ -0,0 +1,10 @@ +This directory contains all external configuration files that +need to be mounted into an application container. + +See the configmap.yaml in the templates directory for an example +of how to load (ie map) config files from this directory, into +Kubernetes, for distribution within the k8s cluster. + +See deployment.yaml in the templates directory for an example +of how the 'config mapped' files are then mounted into the +containers. diff --git a/kubernetes/helm/starters/onap-app/resources/config/application.properties b/kubernetes/helm/starters/onap-app/resources/config/application.properties new file mode 100644 index 0000000000..496a15a531 --- /dev/null +++ b/kubernetes/helm/starters/onap-app/resources/config/application.properties @@ -0,0 +1 @@ +sampleConfigKey=sampleConfigValue \ No newline at end of file -- cgit 1.2.3-korg