diff --git a/.github/workflows/ghcr_deploy.yml b/.github/workflows/ghcr_deploy.yml index 5ed6c47b4..d1fdc2b59 100644 --- a/.github/workflows/ghcr_deploy.yml +++ b/.github/workflows/ghcr_deploy.yml @@ -10,7 +10,7 @@ on: env: REGISTRY: ghcr.io IMAGE_NAME: ${{ github.repository }} - CHART_NAME: litellm + CHART_NAME: litellm-helm # There is a single job in this workflow. It's configured to run on the latest available version of Ubuntu. jobs: @@ -143,7 +143,7 @@ jobs: id: current_version shell: bash run: | - CHART_LIST=$(helm show chart oci://${{ env.REGISTRY }}/${{ env.REPO_OWNER }}/${{ env.CHART_NAME }}-helm 2>/dev/null || true) + CHART_LIST=$(helm show chart oci://${{ env.REGISTRY }}/${{ env.REPO_OWNER }}/${{ env.CHART_NAME }} 2>/dev/null || true) if [ -z "${CHART_LIST}" ]; then echo "current-version=0.1.0" | tee -a $GITHUB_OUTPUT else @@ -163,7 +163,7 @@ jobs: - uses: ./.github/actions/helm-oci-chart-releaser with: name: ${{ env.CHART_NAME }} - repository: ${{ env.REPO_OWNER }}-helm + repository: ${{ env.REPO_OWNER }} tag: ${{ github.event.inputs.chartVersion || steps.bump_version.outputs.next-version || '0.1.0' }} app_version: ${{ steps.current_app_tag.outputs.tag || 'latest' }} path: deploy/charts/${{ env.CHART_NAME }} diff --git a/deploy/charts/litellm/.helmignore b/deploy/charts/litellm-helm/.helmignore similarity index 100% rename from deploy/charts/litellm/.helmignore rename to deploy/charts/litellm-helm/.helmignore diff --git a/deploy/charts/litellm/Chart.lock b/deploy/charts/litellm-helm/Chart.lock similarity index 100% rename from deploy/charts/litellm/Chart.lock rename to deploy/charts/litellm-helm/Chart.lock diff --git a/deploy/charts/litellm/Chart.yaml b/deploy/charts/litellm-helm/Chart.yaml similarity index 100% rename from deploy/charts/litellm/Chart.yaml rename to deploy/charts/litellm-helm/Chart.yaml diff --git a/deploy/charts/litellm/README.md b/deploy/charts/litellm-helm/README.md similarity index 100% rename from deploy/charts/litellm/README.md rename to deploy/charts/litellm-helm/README.md diff --git a/deploy/charts/litellm-helm/charts/postgresql-14.3.1.tgz b/deploy/charts/litellm-helm/charts/postgresql-14.3.1.tgz new file mode 100644 index 000000000..e8e2fac0f Binary files /dev/null and b/deploy/charts/litellm-helm/charts/postgresql-14.3.1.tgz differ diff --git a/deploy/charts/litellm-helm/charts/redis-18.19.1.tgz b/deploy/charts/litellm-helm/charts/redis-18.19.1.tgz new file mode 100644 index 000000000..4a55a9800 Binary files /dev/null and b/deploy/charts/litellm-helm/charts/redis-18.19.1.tgz differ diff --git a/deploy/charts/litellm/templates/NOTES.txt b/deploy/charts/litellm-helm/templates/NOTES.txt similarity index 100% rename from deploy/charts/litellm/templates/NOTES.txt rename to deploy/charts/litellm-helm/templates/NOTES.txt diff --git a/deploy/charts/litellm/templates/_helpers.tpl b/deploy/charts/litellm-helm/templates/_helpers.tpl similarity index 100% rename from deploy/charts/litellm/templates/_helpers.tpl rename to deploy/charts/litellm-helm/templates/_helpers.tpl diff --git a/deploy/charts/litellm/templates/configmap-litellm.yaml b/deploy/charts/litellm-helm/templates/configmap-litellm.yaml similarity index 100% rename from deploy/charts/litellm/templates/configmap-litellm.yaml rename to deploy/charts/litellm-helm/templates/configmap-litellm.yaml diff --git a/deploy/charts/litellm/templates/deployment.yaml b/deploy/charts/litellm-helm/templates/deployment.yaml similarity index 100% rename from deploy/charts/litellm/templates/deployment.yaml rename to deploy/charts/litellm-helm/templates/deployment.yaml diff --git a/deploy/charts/litellm/templates/hpa.yaml b/deploy/charts/litellm-helm/templates/hpa.yaml similarity index 100% rename from deploy/charts/litellm/templates/hpa.yaml rename to deploy/charts/litellm-helm/templates/hpa.yaml diff --git a/deploy/charts/litellm/templates/ingress.yaml b/deploy/charts/litellm-helm/templates/ingress.yaml similarity index 100% rename from deploy/charts/litellm/templates/ingress.yaml rename to deploy/charts/litellm-helm/templates/ingress.yaml diff --git a/deploy/charts/litellm/templates/secret-dbcredentials.yaml b/deploy/charts/litellm-helm/templates/secret-dbcredentials.yaml similarity index 100% rename from deploy/charts/litellm/templates/secret-dbcredentials.yaml rename to deploy/charts/litellm-helm/templates/secret-dbcredentials.yaml diff --git a/deploy/charts/litellm/templates/secret-masterkey.yaml b/deploy/charts/litellm-helm/templates/secret-masterkey.yaml similarity index 100% rename from deploy/charts/litellm/templates/secret-masterkey.yaml rename to deploy/charts/litellm-helm/templates/secret-masterkey.yaml diff --git a/deploy/charts/litellm/templates/service.yaml b/deploy/charts/litellm-helm/templates/service.yaml similarity index 100% rename from deploy/charts/litellm/templates/service.yaml rename to deploy/charts/litellm-helm/templates/service.yaml diff --git a/deploy/charts/litellm/templates/serviceaccount.yaml b/deploy/charts/litellm-helm/templates/serviceaccount.yaml similarity index 100% rename from deploy/charts/litellm/templates/serviceaccount.yaml rename to deploy/charts/litellm-helm/templates/serviceaccount.yaml diff --git a/deploy/charts/litellm/templates/tests/test-connection.yaml b/deploy/charts/litellm-helm/templates/tests/test-connection.yaml similarity index 100% rename from deploy/charts/litellm/templates/tests/test-connection.yaml rename to deploy/charts/litellm-helm/templates/tests/test-connection.yaml diff --git a/deploy/charts/litellm/values.yaml b/deploy/charts/litellm-helm/values.yaml similarity index 100% rename from deploy/charts/litellm/values.yaml rename to deploy/charts/litellm-helm/values.yaml