From c4acf10e4e15ff4225f1c607e75bb1eb04a0ed55 Mon Sep 17 00:00:00 2001 From: Mohammed Naser Date: Sat, 28 Mar 2020 21:06:06 -0400 Subject: [PATCH] cleanup: move chart to charts/ This will allow us to run the CI properly. Change-Id: I813607167ca0568dc06935676409251c2d947ba9 --- {chart => charts/lodgeit}/.helmignore | 0 {chart => charts/lodgeit}/Chart.yaml | 1 + {chart => charts/lodgeit}/templates/_helpers.tpl | 0 {chart => charts/lodgeit}/templates/deployment.yaml | 0 {chart => charts/lodgeit}/templates/ingress.yaml | 0 {chart => charts/lodgeit}/templates/secrets.yaml | 0 {chart => charts/lodgeit}/templates/service.yaml | 0 {chart => charts/lodgeit}/values.yaml | 2 +- playbooks/functional/run.yaml | 4 ++-- 9 files changed, 4 insertions(+), 3 deletions(-) rename {chart => charts/lodgeit}/.helmignore (100%) rename {chart => charts/lodgeit}/Chart.yaml (69%) rename {chart => charts/lodgeit}/templates/_helpers.tpl (100%) rename {chart => charts/lodgeit}/templates/deployment.yaml (100%) rename {chart => charts/lodgeit}/templates/ingress.yaml (100%) rename {chart => charts/lodgeit}/templates/secrets.yaml (100%) rename {chart => charts/lodgeit}/templates/service.yaml (100%) rename {chart => charts/lodgeit}/values.yaml (98%) diff --git a/chart/.helmignore b/charts/lodgeit/.helmignore similarity index 100% rename from chart/.helmignore rename to charts/lodgeit/.helmignore diff --git a/chart/Chart.yaml b/charts/lodgeit/Chart.yaml similarity index 69% rename from chart/Chart.yaml rename to charts/lodgeit/Chart.yaml index 14fc2f4..d5bfc04 100644 --- a/chart/Chart.yaml +++ b/charts/lodgeit/Chart.yaml @@ -3,3 +3,4 @@ name: lodgeit description: Helm charts for deploying Lodgeit version: 0.0.0 appVersion: 0.0.1 +home: https://opendev.org/vexxhost/lodgeit-helm diff --git a/chart/templates/_helpers.tpl b/charts/lodgeit/templates/_helpers.tpl similarity index 100% rename from chart/templates/_helpers.tpl rename to charts/lodgeit/templates/_helpers.tpl diff --git a/chart/templates/deployment.yaml b/charts/lodgeit/templates/deployment.yaml similarity index 100% rename from chart/templates/deployment.yaml rename to charts/lodgeit/templates/deployment.yaml diff --git a/chart/templates/ingress.yaml b/charts/lodgeit/templates/ingress.yaml similarity index 100% rename from chart/templates/ingress.yaml rename to charts/lodgeit/templates/ingress.yaml diff --git a/chart/templates/secrets.yaml b/charts/lodgeit/templates/secrets.yaml similarity index 100% rename from chart/templates/secrets.yaml rename to charts/lodgeit/templates/secrets.yaml diff --git a/chart/templates/service.yaml b/charts/lodgeit/templates/service.yaml similarity index 100% rename from chart/templates/service.yaml rename to charts/lodgeit/templates/service.yaml diff --git a/chart/values.yaml b/charts/lodgeit/values.yaml similarity index 98% rename from chart/values.yaml rename to charts/lodgeit/values.yaml index 8b9d366..9e8a552 100644 --- a/chart/values.yaml +++ b/charts/lodgeit/values.yaml @@ -11,7 +11,7 @@ fullnameOverride: "" dbUri: "sqlite:////tmp/lodgeit.db" secretKey: "password" -#existingSecret: +# existingSecret: podSecurityContext: {} # fsGroup: 2000 diff --git a/playbooks/functional/run.yaml b/playbooks/functional/run.yaml index 0e65bb3..004c5fb 100644 --- a/playbooks/functional/run.yaml +++ b/playbooks/functional/run.yaml @@ -3,7 +3,7 @@ - role: helm-template vars: helm_release_name: lodgeit - helm_chart: ./chart + helm_chart: ./charts/lodgeit tasks: - name: Get the Node Port command: > @@ -22,4 +22,4 @@ webpage: "" return_content: true register: _paste - failed_when: "'test' not in _paste.content" \ No newline at end of file + failed_when: "'test' not in _paste.content"