From fdd5d1041b1e4b00bf9b809a0ef5c16d9f1516db Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Wed, 15 Nov 2023 23:02:42 -0300 Subject: [PATCH] Move files --- .gitignore | 2 +- helm/{exam => }/.helmignore | 0 helm/{exam => }/Chart.yaml | 0 helm/{exam => }/templates/_helpers.tpl | 0 helm/{exam => }/templates/deployment.yaml | 0 helm/{exam => }/templates/ingress.yaml | 0 helm/{exam => }/templates/secrets.yaml | 0 helm/{exam => }/templates/service.yaml | 0 helm/{exam => }/templates/serviceaccount.yaml | 0 helm/{exam => }/templates/tests/test-connection.yaml | 0 helm/{exam => }/templates/volume.yaml | 0 helm/{exam => }/values.yaml | 0 12 files changed, 1 insertion(+), 1 deletion(-) rename helm/{exam => }/.helmignore (100%) rename helm/{exam => }/Chart.yaml (100%) rename helm/{exam => }/templates/_helpers.tpl (100%) rename helm/{exam => }/templates/deployment.yaml (100%) rename helm/{exam => }/templates/ingress.yaml (100%) rename helm/{exam => }/templates/secrets.yaml (100%) rename helm/{exam => }/templates/service.yaml (100%) rename helm/{exam => }/templates/serviceaccount.yaml (100%) rename helm/{exam => }/templates/tests/test-connection.yaml (100%) rename helm/{exam => }/templates/volume.yaml (100%) rename helm/{exam => }/values.yaml (100%) diff --git a/.gitignore b/.gitignore index 84e052e..51b2e75 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ .venv -exam/ +old-helm diff --git a/helm/exam/.helmignore b/helm/.helmignore similarity index 100% rename from helm/exam/.helmignore rename to helm/.helmignore diff --git a/helm/exam/Chart.yaml b/helm/Chart.yaml similarity index 100% rename from helm/exam/Chart.yaml rename to helm/Chart.yaml diff --git a/helm/exam/templates/_helpers.tpl b/helm/templates/_helpers.tpl similarity index 100% rename from helm/exam/templates/_helpers.tpl rename to helm/templates/_helpers.tpl diff --git a/helm/exam/templates/deployment.yaml b/helm/templates/deployment.yaml similarity index 100% rename from helm/exam/templates/deployment.yaml rename to helm/templates/deployment.yaml diff --git a/helm/exam/templates/ingress.yaml b/helm/templates/ingress.yaml similarity index 100% rename from helm/exam/templates/ingress.yaml rename to helm/templates/ingress.yaml diff --git a/helm/exam/templates/secrets.yaml b/helm/templates/secrets.yaml similarity index 100% rename from helm/exam/templates/secrets.yaml rename to helm/templates/secrets.yaml diff --git a/helm/exam/templates/service.yaml b/helm/templates/service.yaml similarity index 100% rename from helm/exam/templates/service.yaml rename to helm/templates/service.yaml diff --git a/helm/exam/templates/serviceaccount.yaml b/helm/templates/serviceaccount.yaml similarity index 100% rename from helm/exam/templates/serviceaccount.yaml rename to helm/templates/serviceaccount.yaml diff --git a/helm/exam/templates/tests/test-connection.yaml b/helm/templates/tests/test-connection.yaml similarity index 100% rename from helm/exam/templates/tests/test-connection.yaml rename to helm/templates/tests/test-connection.yaml diff --git a/helm/exam/templates/volume.yaml b/helm/templates/volume.yaml similarity index 100% rename from helm/exam/templates/volume.yaml rename to helm/templates/volume.yaml diff --git a/helm/exam/values.yaml b/helm/values.yaml similarity index 100% rename from helm/exam/values.yaml rename to helm/values.yaml