diff --git a/.github/workflows/helm.yml b/.github/workflows/helm.yml index c124c1e0..03a07779 100644 --- a/.github/workflows/helm.yml +++ b/.github/workflows/helm.yml @@ -23,7 +23,7 @@ jobs: - name: Package Helm chart run: | mkdir -p ./helm-packages - helm package docker/helm \ + helm package helm \ --version ${{ inputs.version }} \ --app-version ${{ inputs.version }} \ --destination ./helm-packages diff --git a/docker/helm/.helmignore b/helm/.helmignore similarity index 100% rename from docker/helm/.helmignore rename to helm/.helmignore diff --git a/docker/helm/Chart.yaml b/helm/Chart.yaml similarity index 89% rename from docker/helm/Chart.yaml rename to helm/Chart.yaml index baff8faa..9d834068 100644 --- a/docker/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -17,7 +17,7 @@ home: https://github.com/Portabase/portabase sources: - https://github.com/Portabase/portabase - - https://github.com/Portabase/portabase/tree/main/docker/helm + - https://github.com/Portabase/portabase/tree/main/helm maintainers: - name: Charles Gauthereau diff --git a/docker/helm/README.md b/helm/README.md similarity index 100% rename from docker/helm/README.md rename to helm/README.md diff --git a/docker/helm/templates/deployment.yaml b/helm/templates/deployment.yaml similarity index 100% rename from docker/helm/templates/deployment.yaml rename to helm/templates/deployment.yaml diff --git a/docker/helm/templates/pvc.yaml b/helm/templates/pvc.yaml similarity index 100% rename from docker/helm/templates/pvc.yaml rename to helm/templates/pvc.yaml diff --git a/docker/helm/templates/service.yaml b/helm/templates/service.yaml similarity index 100% rename from docker/helm/templates/service.yaml rename to helm/templates/service.yaml diff --git a/docker/helm/values.yaml b/helm/values.yaml similarity index 100% rename from docker/helm/values.yaml rename to helm/values.yaml