Add standardized helm chart for so 13/31513/15
authorMike Elliott <mike.elliott@amdocs.com>
Mon, 12 Feb 2018 20:54:03 +0000 (15:54 -0500)
committerMike Elliott <mike.elliott@amdocs.com>
Fri, 23 Feb 2018 20:09:17 +0000 (15:09 -0500)
commitd32d36e3219cc0f17e2fe81e6ac50866e4025140
treee30ef0e7c453a1b5e6a4d0c4b0f6eca9fa5a31fe
parenta70775c54d244fe769293ea3bba1d99881416e6e
Add standardized helm chart for so

This is a standardization (based on helm community best practices)
of a Helm chart for the Service Orchestrator (so) in ONAP.

How to deploy the so chart (outside of the parent onap chart) from
the local oom/kubernetes codebase.

** need to create/update dependencies defined in the chart's
** requirements.yaml
helm dep update so/

** deploy the so helm chart with the "release" name of 'onap'
helm install so/ -n onap

Change-Id: I22471eb9fe0dec32941e14dc63857222c80ebe20
Issue-ID: OOM-727
Signed-off-by: Mike Elliott <mike.elliott@amdocs.com>
51 files changed:
kubernetes/so/.helmignore [new file with mode: 0644]
kubernetes/so/Chart.yaml [new file with mode: 0644]
kubernetes/so/charts/mariadb/.helmignore [new file with mode: 0644]
kubernetes/so/charts/mariadb/Chart.yaml [new file with mode: 0644]
kubernetes/so/charts/mariadb/resources/config/mariadb/conf.d/mariadb1.cnf [new file with mode: 0644]
kubernetes/so/charts/mariadb/resources/config/mariadb/docker-entrypoint-initdb.d/01-load-default-sql-files.sh [new file with mode: 0644]
kubernetes/so/charts/mariadb/resources/config/mariadb/docker-entrypoint-initdb.d/02-load-additional-changes.sh [new file with mode: 0644]
kubernetes/so/charts/mariadb/resources/config/mariadb/docker-entrypoint-initdb.d/db-sql-scripts/bulkload-files/automated-tests/create_mso_db-tests.sql [new file with mode: 0644]
kubernetes/so/charts/mariadb/resources/config/mariadb/docker-entrypoint-initdb.d/db-sql-scripts/bulkload-files/default/create_mso_db-default.sql [new file with mode: 0644]
kubernetes/so/charts/mariadb/resources/config/mariadb/docker-entrypoint-initdb.d/db-sql-scripts/bulkload-files/demo-dns/create_mso_db-demo-dns.sql [new file with mode: 0644]
kubernetes/so/charts/mariadb/resources/config/mariadb/docker-entrypoint-initdb.d/db-sql-scripts/bulkload-files/demo-vfw/create_mso_db-demo-vfw.sql [new file with mode: 0644]
kubernetes/so/charts/mariadb/resources/config/mariadb/docker-entrypoint-initdb.d/db-sql-scripts/camunda/mariadb_engine_7.7.3-ee.sql [new file with mode: 0644]
kubernetes/so/charts/mariadb/resources/config/mariadb/docker-entrypoint-initdb.d/db-sql-scripts/camunda/mysql_create_camunda_admin.sql [new file with mode: 0644]
kubernetes/so/charts/mariadb/resources/config/mariadb/docker-entrypoint-initdb.d/db-sql-scripts/main-schemas/MySQL-Catalog-schema.sql [new file with mode: 0644]
kubernetes/so/charts/mariadb/resources/config/mariadb/docker-entrypoint-initdb.d/db-sql-scripts/main-schemas/MySQL-Requests-schema.sql [new file with mode: 0644]
kubernetes/so/charts/mariadb/templates/NOTES.txt [new file with mode: 0644]
kubernetes/so/charts/mariadb/templates/clusterrolebinding.yaml [new file with mode: 0644]
kubernetes/so/charts/mariadb/templates/configmap.yaml [new file with mode: 0644]
kubernetes/so/charts/mariadb/templates/deployment.yaml [new file with mode: 0644]
kubernetes/so/charts/mariadb/templates/pv.yaml [new file with mode: 0644]
kubernetes/so/charts/mariadb/templates/pvc.yaml [new file with mode: 0644]
kubernetes/so/charts/mariadb/templates/secrets.yaml [new file with mode: 0644]
kubernetes/so/charts/mariadb/templates/service.yaml [new file with mode: 0644]
kubernetes/so/charts/mariadb/values.yaml [new file with mode: 0644]
kubernetes/so/requirements.yaml [new file with mode: 0644]
kubernetes/so/resources/config/docker-files/scripts/start-jboss-server.sh [new file with mode: 0755]
kubernetes/so/resources/config/log/filebeat/filebeat.yml [new file with mode: 0644]
kubernetes/so/resources/config/log/logback.apihandler-infra.xml [new file with mode: 0644]
kubernetes/so/resources/config/log/logback.appc.xml [new file with mode: 0644]
kubernetes/so/resources/config/log/logback.asdc.xml [new file with mode: 0644]
kubernetes/so/resources/config/log/logback.bpmn.xml [new file with mode: 0644]
kubernetes/so/resources/config/log/logback.msorequestsdbadapter.xml [new file with mode: 0644]
kubernetes/so/resources/config/log/logback.network.xml [new file with mode: 0644]
kubernetes/so/resources/config/log/logback.sdnc.xml [new file with mode: 0644]
kubernetes/so/resources/config/log/logback.tenant.xml [new file with mode: 0644]
kubernetes/so/resources/config/log/logback.vfc.xml [new file with mode: 0644]
kubernetes/so/resources/config/log/logback.vnf.xml [new file with mode: 0644]
kubernetes/so/resources/config/log/logback.workflow-message-adapter.xml [new file with mode: 0644]
kubernetes/so/resources/config/mso/aai.crt [new file with mode: 0755]
kubernetes/so/resources/config/mso/encryption.key [new file with mode: 0644]
kubernetes/so/resources/config/mso/mso-docker.json [new file with mode: 0755]
kubernetes/so/resources/config/mso/standalone-full-ha-mso.xml [new file with mode: 0644]
kubernetes/so/templates/NOTES.txt [new file with mode: 0644]
kubernetes/so/templates/clusterrolebinding.yaml [new file with mode: 0644]
kubernetes/so/templates/configmap.yaml [new file with mode: 0644]
kubernetes/so/templates/deployment.yaml [new file with mode: 0644]
kubernetes/so/templates/log-configmap.yaml [new file with mode: 0644]
kubernetes/so/templates/namespace.yaml [new file with mode: 0644]
kubernetes/so/templates/secrets.yaml [new file with mode: 0644]
kubernetes/so/templates/service.yaml [new file with mode: 0644]
kubernetes/so/values.yaml [new file with mode: 0644]