diff --git a/.github/workflows/chroma-release.yml b/.github/workflows/chroma-release.yml index 6c2250a0fb3..c2f8feaba16 100644 --- a/.github/workflows/chroma-release.yml +++ b/.github/workflows/chroma-release.yml @@ -177,3 +177,11 @@ jobs: ref: 'main' }) console.log(result) + - name: Install Helm + uses: azure/setup-helm@v3 + - name: Release Helm Charts + uses: helm/chart-releaser-action@v1.6.0 + with: + charts_dir: 'k8s/charts/' + env: + CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" diff --git a/Tiltfile b/Tiltfile index b0a1c3ac17b..2f4cc5667f0 100644 --- a/Tiltfile +++ b/Tiltfile @@ -26,10 +26,10 @@ docker_build( k8s_yaml( helm( - 'k8s/distributed-chroma', + 'k8s/charts/distributed-chroma', namespace='chroma', values=[ - 'k8s/distributed-chroma/values.yaml' + 'k8s/charts/distributed-chroma/values.yaml' ] ) ) diff --git a/k8s/distributed-chroma/.helmignore b/k8s/charts/distributed-chroma/.helmignore similarity index 100% rename from k8s/distributed-chroma/.helmignore rename to k8s/charts/distributed-chroma/.helmignore diff --git a/k8s/distributed-chroma/Chart.yaml b/k8s/charts/distributed-chroma/Chart.yaml similarity index 100% rename from k8s/distributed-chroma/Chart.yaml rename to k8s/charts/distributed-chroma/Chart.yaml diff --git a/k8s/distributed-chroma/crds/memberlist_crd.yaml b/k8s/charts/distributed-chroma/crds/memberlist_crd.yaml similarity index 100% rename from k8s/distributed-chroma/crds/memberlist_crd.yaml rename to k8s/charts/distributed-chroma/crds/memberlist_crd.yaml diff --git a/k8s/distributed-chroma/templates/coordinator.yaml b/k8s/charts/distributed-chroma/templates/coordinator.yaml similarity index 100% rename from k8s/distributed-chroma/templates/coordinator.yaml rename to k8s/charts/distributed-chroma/templates/coordinator.yaml diff --git a/k8s/distributed-chroma/templates/frontend-server.yaml b/k8s/charts/distributed-chroma/templates/frontend-server.yaml similarity index 100% rename from k8s/distributed-chroma/templates/frontend-server.yaml rename to k8s/charts/distributed-chroma/templates/frontend-server.yaml diff --git a/k8s/distributed-chroma/templates/logservice.yaml b/k8s/charts/distributed-chroma/templates/logservice.yaml similarity index 100% rename from k8s/distributed-chroma/templates/logservice.yaml rename to k8s/charts/distributed-chroma/templates/logservice.yaml diff --git a/k8s/distributed-chroma/templates/migration.yaml b/k8s/charts/distributed-chroma/templates/migration.yaml similarity index 100% rename from k8s/distributed-chroma/templates/migration.yaml rename to k8s/charts/distributed-chroma/templates/migration.yaml diff --git a/k8s/distributed-chroma/templates/namespace.yaml b/k8s/charts/distributed-chroma/templates/namespace.yaml similarity index 100% rename from k8s/distributed-chroma/templates/namespace.yaml rename to k8s/charts/distributed-chroma/templates/namespace.yaml diff --git a/k8s/distributed-chroma/templates/pod-watcher-role.yaml b/k8s/charts/distributed-chroma/templates/pod-watcher-role.yaml similarity index 100% rename from k8s/distributed-chroma/templates/pod-watcher-role.yaml rename to k8s/charts/distributed-chroma/templates/pod-watcher-role.yaml diff --git a/k8s/distributed-chroma/templates/postgres.yaml b/k8s/charts/distributed-chroma/templates/postgres.yaml similarity index 100% rename from k8s/distributed-chroma/templates/postgres.yaml rename to k8s/charts/distributed-chroma/templates/postgres.yaml diff --git a/k8s/distributed-chroma/templates/pulsar.yaml b/k8s/charts/distributed-chroma/templates/pulsar.yaml similarity index 100% rename from k8s/distributed-chroma/templates/pulsar.yaml rename to k8s/charts/distributed-chroma/templates/pulsar.yaml diff --git a/k8s/distributed-chroma/templates/worker.yaml b/k8s/charts/distributed-chroma/templates/worker.yaml similarity index 100% rename from k8s/distributed-chroma/templates/worker.yaml rename to k8s/charts/distributed-chroma/templates/worker.yaml diff --git a/k8s/distributed-chroma/templates/worker_memberlist_cr.yaml b/k8s/charts/distributed-chroma/templates/worker_memberlist_cr.yaml similarity index 100% rename from k8s/distributed-chroma/templates/worker_memberlist_cr.yaml rename to k8s/charts/distributed-chroma/templates/worker_memberlist_cr.yaml diff --git a/k8s/distributed-chroma/values.yaml b/k8s/charts/distributed-chroma/values.yaml similarity index 100% rename from k8s/distributed-chroma/values.yaml rename to k8s/charts/distributed-chroma/values.yaml