From 92ce3f646d52d5b63c144c9835fcc95714c54c81 Mon Sep 17 00:00:00 2001 From: "guangzheng.li" Date: Wed, 14 Sep 2022 21:22:24 +0800 Subject: [PATCH] [helm] feat: move hello helm chart to helm-charts floder and fix actions. --- .github/workflows/release.yml | 2 +- {hello-helm => helm-charts/hello-helm}/.helmignore | 0 {hello-helm => helm-charts/hello-helm}/Chart.yaml | 0 {hello-helm => helm-charts/hello-helm}/Dockerfile | 0 {hello-helm => helm-charts/hello-helm}/_helpers.tpl | 0 {hello-helm => helm-charts/hello-helm}/main.go | 0 .../hello-helm}/templates/hellok8s-configmaps.yaml | 0 .../hello-helm}/templates/hellok8s-deployment.yaml | 0 .../hello-helm}/templates/hellok8s-secret.yaml | 0 .../hello-helm}/templates/hellok8s-service.yaml | 0 {hello-helm => helm-charts/hello-helm}/templates/ingress.yaml | 0 .../hello-helm}/templates/nginx-deployment.yaml | 0 .../hello-helm}/templates/nginx-service.yaml | 0 {hello-helm => helm-charts/hello-helm}/values-dev.yaml | 0 {hello-helm => helm-charts/hello-helm}/values.yaml | 0 15 files changed, 1 insertion(+), 1 deletion(-) rename {hello-helm => helm-charts/hello-helm}/.helmignore (100%) rename {hello-helm => helm-charts/hello-helm}/Chart.yaml (100%) rename {hello-helm => helm-charts/hello-helm}/Dockerfile (100%) rename {hello-helm => helm-charts/hello-helm}/_helpers.tpl (100%) rename {hello-helm => helm-charts/hello-helm}/main.go (100%) rename {hello-helm => helm-charts/hello-helm}/templates/hellok8s-configmaps.yaml (100%) rename {hello-helm => helm-charts/hello-helm}/templates/hellok8s-deployment.yaml (100%) rename {hello-helm => helm-charts/hello-helm}/templates/hellok8s-secret.yaml (100%) rename {hello-helm => helm-charts/hello-helm}/templates/hellok8s-service.yaml (100%) rename {hello-helm => helm-charts/hello-helm}/templates/ingress.yaml (100%) rename {hello-helm => helm-charts/hello-helm}/templates/nginx-deployment.yaml (100%) rename {hello-helm => helm-charts/hello-helm}/templates/nginx-service.yaml (100%) rename {hello-helm => helm-charts/hello-helm}/values-dev.yaml (100%) rename {hello-helm => helm-charts/hello-helm}/values.yaml (100%) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 10c5529..584c435 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,6 +31,6 @@ jobs: - name: Run chart-releaser uses: helm/chart-releaser-action@v1.4.0 with: - charts_dir: hello-helm + charts_dir: helm-charts env: CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" \ No newline at end of file diff --git a/hello-helm/.helmignore b/helm-charts/hello-helm/.helmignore similarity index 100% rename from hello-helm/.helmignore rename to helm-charts/hello-helm/.helmignore diff --git a/hello-helm/Chart.yaml b/helm-charts/hello-helm/Chart.yaml similarity index 100% rename from hello-helm/Chart.yaml rename to helm-charts/hello-helm/Chart.yaml diff --git a/hello-helm/Dockerfile b/helm-charts/hello-helm/Dockerfile similarity index 100% rename from hello-helm/Dockerfile rename to helm-charts/hello-helm/Dockerfile diff --git a/hello-helm/_helpers.tpl b/helm-charts/hello-helm/_helpers.tpl similarity index 100% rename from hello-helm/_helpers.tpl rename to helm-charts/hello-helm/_helpers.tpl diff --git a/hello-helm/main.go b/helm-charts/hello-helm/main.go similarity index 100% rename from hello-helm/main.go rename to helm-charts/hello-helm/main.go diff --git a/hello-helm/templates/hellok8s-configmaps.yaml b/helm-charts/hello-helm/templates/hellok8s-configmaps.yaml similarity index 100% rename from hello-helm/templates/hellok8s-configmaps.yaml rename to helm-charts/hello-helm/templates/hellok8s-configmaps.yaml diff --git a/hello-helm/templates/hellok8s-deployment.yaml b/helm-charts/hello-helm/templates/hellok8s-deployment.yaml similarity index 100% rename from hello-helm/templates/hellok8s-deployment.yaml rename to helm-charts/hello-helm/templates/hellok8s-deployment.yaml diff --git a/hello-helm/templates/hellok8s-secret.yaml b/helm-charts/hello-helm/templates/hellok8s-secret.yaml similarity index 100% rename from hello-helm/templates/hellok8s-secret.yaml rename to helm-charts/hello-helm/templates/hellok8s-secret.yaml diff --git a/hello-helm/templates/hellok8s-service.yaml b/helm-charts/hello-helm/templates/hellok8s-service.yaml similarity index 100% rename from hello-helm/templates/hellok8s-service.yaml rename to helm-charts/hello-helm/templates/hellok8s-service.yaml diff --git a/hello-helm/templates/ingress.yaml b/helm-charts/hello-helm/templates/ingress.yaml similarity index 100% rename from hello-helm/templates/ingress.yaml rename to helm-charts/hello-helm/templates/ingress.yaml diff --git a/hello-helm/templates/nginx-deployment.yaml b/helm-charts/hello-helm/templates/nginx-deployment.yaml similarity index 100% rename from hello-helm/templates/nginx-deployment.yaml rename to helm-charts/hello-helm/templates/nginx-deployment.yaml diff --git a/hello-helm/templates/nginx-service.yaml b/helm-charts/hello-helm/templates/nginx-service.yaml similarity index 100% rename from hello-helm/templates/nginx-service.yaml rename to helm-charts/hello-helm/templates/nginx-service.yaml diff --git a/hello-helm/values-dev.yaml b/helm-charts/hello-helm/values-dev.yaml similarity index 100% rename from hello-helm/values-dev.yaml rename to helm-charts/hello-helm/values-dev.yaml diff --git a/hello-helm/values.yaml b/helm-charts/hello-helm/values.yaml similarity index 100% rename from hello-helm/values.yaml rename to helm-charts/hello-helm/values.yaml