diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index 700984d9b..d74d6a455 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -24,6 +24,11 @@ jobs: - name: Set up chart-testing uses: helm/chart-testing-action@v2.6.1 + - name: Add Helm Repositories + run: | + helm repo add sentry-kubernetes https://sentry-kubernetes.github.io/charts + helm repo update + - name: Run chart-testing (list-changed) id: list-changed run: | diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml deleted file mode 100644 index a56de31d7..000000000 --- a/.github/workflows/lint.yaml +++ /dev/null @@ -1,35 +0,0 @@ -name: Lint and Test Charts - -on: pull_request - -jobs: - lint-charts: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: "0" - - name: Dependency update Sentry - uses: WyriHaximus/github-action-helm3@v4 - with: - exec: helm dependency update sentry - - name: Lint Sentry - uses: WyriHaximus/github-action-helm3@v4 - with: - exec: helm lint sentry - - name: Dependency update Clickhouse - uses: WyriHaximus/github-action-helm3@v4 - with: - exec: helm dependency update clickhouse - - name: Lint Clickhouse - uses: WyriHaximus/github-action-helm3@v4 - with: - exec: helm lint clickhouse - - name: Dependency update Sentry Kubernetes - uses: WyriHaximus/github-action-helm3@v4 - with: - exec: helm dependency update sentry-kubernetes - - name: Lint Sentry Kubernetes - uses: WyriHaximus/github-action-helm3@v4 - with: - exec: helm lint sentry-kubernetes diff --git a/.github/workflows/push.yaml b/.github/workflows/push.yaml index 05e2b7944..87ec9f864 100644 --- a/.github/workflows/push.yaml +++ b/.github/workflows/push.yaml @@ -28,17 +28,17 @@ jobs: - name: Build clickhouse chart uses: WyriHaximus/github-action-helm3@v4 with: - exec: helm package -u main/clickhouse --destination gh-pages/charts + exec: helm package -u main/charts/clickhouse --destination gh-pages/charts - name: Build sentry chart uses: WyriHaximus/github-action-helm3@v4 with: - exec: helm package -u main/sentry --destination gh-pages/charts + exec: helm package -u main/charts/sentry --destination gh-pages/charts - name: Build sentry-kubernetes chart uses: WyriHaximus/github-action-helm3@v4 with: - exec: helm package -u main/sentry-kubernetes --destination gh-pages/charts + exec: helm package -u main/charts/sentry-kubernetes --destination gh-pages/charts - name: Build sentry-kubernetes chart uses: WyriHaximus/github-action-helm3@v4 diff --git a/clickhouse/.helmignore b/charts/clickhouse/.helmignore similarity index 100% rename from clickhouse/.helmignore rename to charts/clickhouse/.helmignore diff --git a/clickhouse/CHANGELOG.md b/charts/clickhouse/CHANGELOG.md similarity index 100% rename from clickhouse/CHANGELOG.md rename to charts/clickhouse/CHANGELOG.md diff --git a/clickhouse/Chart.yaml b/charts/clickhouse/Chart.yaml similarity index 100% rename from clickhouse/Chart.yaml rename to charts/clickhouse/Chart.yaml diff --git a/clickhouse/README.md b/charts/clickhouse/README.md similarity index 100% rename from clickhouse/README.md rename to charts/clickhouse/README.md diff --git a/clickhouse/templates/NOTES.txt b/charts/clickhouse/templates/NOTES.txt similarity index 97% rename from clickhouse/templates/NOTES.txt rename to charts/clickhouse/templates/NOTES.txt index f8a6dd147..e1990241a 100755 --- a/clickhouse/templates/NOTES.txt +++ b/charts/clickhouse/templates/NOTES.txt @@ -1,31 +1,31 @@ -** Please be patient while the chart is being deployed ** - -1. Get the Clickhouse URL by running: - -{{- if .Values.clickhouse.ingress.enabled }} - - export HOSTNAME=$(kubectl get ingress --namespace {{ .Release.Namespace }} {{ template "clickhouse.fullname" . }} -o jsonpath='{.spec.rules[0].host}') - echo "Clickhouse URL: http://$HOSTNAME/" - -{{- else }} - - echo URL : http://127.0.0.1:8080/ - echo Management URL : http://127.0.0.1:8080/manager - kubectl port-forward --namespace {{ .Release.Namespace }} svc/{{ template "clickhouse.fullname" . }} 8123:{{ .Values.clickhouse.http_port }} - kubectl port-forward --namespace {{ .Release.Namespace }} svc/{{ template "clickhouse.fullname" . }} 9000:{{ .Values.clickhouse.tcp_port }} - kubectl port-forward --namespace {{ .Release.Namespace }} svc/{{ template "clickhouse.fullname" . }} 9009:{{ .Values.clickhouse.interserver_http_port }} - -{{- end }} - -2. Get the Tabix URL by running: - -{{- if .Values.tabix.ingress.enabled }} - - export HOSTNAME=$(kubectl get ingress --namespace {{ .Release.Namespace }} {{ template "clickhouse.fullname" . }}-tabix -o jsonpath='{.spec.rules[0].host}') - echo "Tabix URL: http://$HOSTNAME/" - -{{- else }} - - kubectl port-forward --namespace {{ .Release.Namespace }} svc/{{ template "clickhouse.fullname" . }}-tabix 80 - -{{- end }} +** Please be patient while the chart is being deployed ** + +1. Get the Clickhouse URL by running: + +{{- if .Values.clickhouse.ingress.enabled }} + + export HOSTNAME=$(kubectl get ingress --namespace {{ .Release.Namespace }} {{ template "clickhouse.fullname" . }} -o jsonpath='{.spec.rules[0].host}') + echo "Clickhouse URL: http://$HOSTNAME/" + +{{- else }} + + echo URL : http://127.0.0.1:8080/ + echo Management URL : http://127.0.0.1:8080/manager + kubectl port-forward --namespace {{ .Release.Namespace }} svc/{{ template "clickhouse.fullname" . }} 8123:{{ .Values.clickhouse.http_port }} + kubectl port-forward --namespace {{ .Release.Namespace }} svc/{{ template "clickhouse.fullname" . }} 9000:{{ .Values.clickhouse.tcp_port }} + kubectl port-forward --namespace {{ .Release.Namespace }} svc/{{ template "clickhouse.fullname" . }} 9009:{{ .Values.clickhouse.interserver_http_port }} + +{{- end }} + +2. Get the Tabix URL by running: + +{{- if .Values.tabix.ingress.enabled }} + + export HOSTNAME=$(kubectl get ingress --namespace {{ .Release.Namespace }} {{ template "clickhouse.fullname" . }}-tabix -o jsonpath='{.spec.rules[0].host}') + echo "Tabix URL: http://$HOSTNAME/" + +{{- else }} + + kubectl port-forward --namespace {{ .Release.Namespace }} svc/{{ template "clickhouse.fullname" . }}-tabix 80 + +{{- end }} diff --git a/clickhouse/templates/_helpers.tpl b/charts/clickhouse/templates/_helpers.tpl similarity index 100% rename from clickhouse/templates/_helpers.tpl rename to charts/clickhouse/templates/_helpers.tpl diff --git a/clickhouse/templates/configmap-config.yaml b/charts/clickhouse/templates/configmap-config.yaml similarity index 100% rename from clickhouse/templates/configmap-config.yaml rename to charts/clickhouse/templates/configmap-config.yaml diff --git a/clickhouse/templates/configmap-metrika.yaml b/charts/clickhouse/templates/configmap-metrika.yaml similarity index 100% rename from clickhouse/templates/configmap-metrika.yaml rename to charts/clickhouse/templates/configmap-metrika.yaml diff --git a/clickhouse/templates/configmap-users.yaml b/charts/clickhouse/templates/configmap-users.yaml similarity index 100% rename from clickhouse/templates/configmap-users.yaml rename to charts/clickhouse/templates/configmap-users.yaml diff --git a/clickhouse/templates/deployment-tabix.yaml b/charts/clickhouse/templates/deployment-tabix.yaml similarity index 100% rename from clickhouse/templates/deployment-tabix.yaml rename to charts/clickhouse/templates/deployment-tabix.yaml diff --git a/clickhouse/templates/ingress-clickhouse.yaml b/charts/clickhouse/templates/ingress-clickhouse.yaml similarity index 100% rename from clickhouse/templates/ingress-clickhouse.yaml rename to charts/clickhouse/templates/ingress-clickhouse.yaml diff --git a/clickhouse/templates/ingress-tabix.yaml b/charts/clickhouse/templates/ingress-tabix.yaml similarity index 100% rename from clickhouse/templates/ingress-tabix.yaml rename to charts/clickhouse/templates/ingress-tabix.yaml diff --git a/clickhouse/templates/prometheus-rule.yaml b/charts/clickhouse/templates/prometheus-rule.yaml similarity index 100% rename from clickhouse/templates/prometheus-rule.yaml rename to charts/clickhouse/templates/prometheus-rule.yaml diff --git a/clickhouse/templates/serviceaccount-clickhouse-replica.yaml b/charts/clickhouse/templates/serviceaccount-clickhouse-replica.yaml similarity index 100% rename from clickhouse/templates/serviceaccount-clickhouse-replica.yaml rename to charts/clickhouse/templates/serviceaccount-clickhouse-replica.yaml diff --git a/clickhouse/templates/serviceaccount-clickhouse-tabix.yaml b/charts/clickhouse/templates/serviceaccount-clickhouse-tabix.yaml similarity index 100% rename from clickhouse/templates/serviceaccount-clickhouse-tabix.yaml rename to charts/clickhouse/templates/serviceaccount-clickhouse-tabix.yaml diff --git a/clickhouse/templates/serviceaccount-clickhouse.yaml b/charts/clickhouse/templates/serviceaccount-clickhouse.yaml similarity index 100% rename from clickhouse/templates/serviceaccount-clickhouse.yaml rename to charts/clickhouse/templates/serviceaccount-clickhouse.yaml diff --git a/clickhouse/templates/servicemonitor-clickhouse-replica.yaml b/charts/clickhouse/templates/servicemonitor-clickhouse-replica.yaml similarity index 100% rename from clickhouse/templates/servicemonitor-clickhouse-replica.yaml rename to charts/clickhouse/templates/servicemonitor-clickhouse-replica.yaml diff --git a/clickhouse/templates/servicemonitor-clickhouse.yaml b/charts/clickhouse/templates/servicemonitor-clickhouse.yaml similarity index 100% rename from clickhouse/templates/servicemonitor-clickhouse.yaml rename to charts/clickhouse/templates/servicemonitor-clickhouse.yaml diff --git a/clickhouse/templates/statefulset-clickhouse-replica.yaml b/charts/clickhouse/templates/statefulset-clickhouse-replica.yaml similarity index 100% rename from clickhouse/templates/statefulset-clickhouse-replica.yaml rename to charts/clickhouse/templates/statefulset-clickhouse-replica.yaml diff --git a/clickhouse/templates/statefulset-clickhouse.yaml b/charts/clickhouse/templates/statefulset-clickhouse.yaml similarity index 100% rename from clickhouse/templates/statefulset-clickhouse.yaml rename to charts/clickhouse/templates/statefulset-clickhouse.yaml diff --git a/clickhouse/templates/svc-clickhouse-headless.yaml b/charts/clickhouse/templates/svc-clickhouse-headless.yaml similarity index 100% rename from clickhouse/templates/svc-clickhouse-headless.yaml rename to charts/clickhouse/templates/svc-clickhouse-headless.yaml diff --git a/clickhouse/templates/svc-clickhouse-metrics.yaml b/charts/clickhouse/templates/svc-clickhouse-metrics.yaml similarity index 100% rename from clickhouse/templates/svc-clickhouse-metrics.yaml rename to charts/clickhouse/templates/svc-clickhouse-metrics.yaml diff --git a/clickhouse/templates/svc-clickhouse-replica-headless.yaml b/charts/clickhouse/templates/svc-clickhouse-replica-headless.yaml similarity index 100% rename from clickhouse/templates/svc-clickhouse-replica-headless.yaml rename to charts/clickhouse/templates/svc-clickhouse-replica-headless.yaml diff --git a/clickhouse/templates/svc-clickhouse-replica-metrics.yaml b/charts/clickhouse/templates/svc-clickhouse-replica-metrics.yaml similarity index 100% rename from clickhouse/templates/svc-clickhouse-replica-metrics.yaml rename to charts/clickhouse/templates/svc-clickhouse-replica-metrics.yaml diff --git a/clickhouse/templates/svc-clickhouse-replica.yaml b/charts/clickhouse/templates/svc-clickhouse-replica.yaml similarity index 100% rename from clickhouse/templates/svc-clickhouse-replica.yaml rename to charts/clickhouse/templates/svc-clickhouse-replica.yaml diff --git a/clickhouse/templates/svc-clickhouse.yaml b/charts/clickhouse/templates/svc-clickhouse.yaml similarity index 100% rename from clickhouse/templates/svc-clickhouse.yaml rename to charts/clickhouse/templates/svc-clickhouse.yaml diff --git a/clickhouse/templates/svc-tabix.yaml b/charts/clickhouse/templates/svc-tabix.yaml similarity index 100% rename from clickhouse/templates/svc-tabix.yaml rename to charts/clickhouse/templates/svc-tabix.yaml diff --git a/clickhouse/values.yaml b/charts/clickhouse/values.yaml similarity index 100% rename from clickhouse/values.yaml rename to charts/clickhouse/values.yaml diff --git a/sentry-kubernetes/.helmignore b/charts/sentry-kubernetes/.helmignore similarity index 100% rename from sentry-kubernetes/.helmignore rename to charts/sentry-kubernetes/.helmignore diff --git a/sentry-kubernetes/CHANGELOG.md b/charts/sentry-kubernetes/CHANGELOG.md similarity index 100% rename from sentry-kubernetes/CHANGELOG.md rename to charts/sentry-kubernetes/CHANGELOG.md diff --git a/sentry-kubernetes/Chart.yaml b/charts/sentry-kubernetes/Chart.yaml similarity index 92% rename from sentry-kubernetes/Chart.yaml rename to charts/sentry-kubernetes/Chart.yaml index fcc9e13da..a50a9095c 100644 --- a/sentry-kubernetes/Chart.yaml +++ b/charts/sentry-kubernetes/Chart.yaml @@ -13,3 +13,5 @@ keywords: sources: - https://github.com/getsentry/sentry-kubernetes - https://github.com/sentry-kubernetes/charts +maintainers: + - name: sentry-kubernetes diff --git a/sentry-kubernetes/README.md b/charts/sentry-kubernetes/README.md similarity index 100% rename from sentry-kubernetes/README.md rename to charts/sentry-kubernetes/README.md diff --git a/sentry-kubernetes/templates/NOTES.txt b/charts/sentry-kubernetes/templates/NOTES.txt similarity index 100% rename from sentry-kubernetes/templates/NOTES.txt rename to charts/sentry-kubernetes/templates/NOTES.txt diff --git a/sentry-kubernetes/templates/_helpers.tpl b/charts/sentry-kubernetes/templates/_helpers.tpl similarity index 100% rename from sentry-kubernetes/templates/_helpers.tpl rename to charts/sentry-kubernetes/templates/_helpers.tpl diff --git a/sentry-kubernetes/templates/clusterrole.yaml b/charts/sentry-kubernetes/templates/clusterrole.yaml similarity index 100% rename from sentry-kubernetes/templates/clusterrole.yaml rename to charts/sentry-kubernetes/templates/clusterrole.yaml diff --git a/sentry-kubernetes/templates/clusterrolebinding.yaml b/charts/sentry-kubernetes/templates/clusterrolebinding.yaml similarity index 100% rename from sentry-kubernetes/templates/clusterrolebinding.yaml rename to charts/sentry-kubernetes/templates/clusterrolebinding.yaml diff --git a/sentry-kubernetes/templates/deployment.yaml b/charts/sentry-kubernetes/templates/deployment.yaml similarity index 100% rename from sentry-kubernetes/templates/deployment.yaml rename to charts/sentry-kubernetes/templates/deployment.yaml diff --git a/sentry-kubernetes/templates/secret.yaml b/charts/sentry-kubernetes/templates/secret.yaml similarity index 100% rename from sentry-kubernetes/templates/secret.yaml rename to charts/sentry-kubernetes/templates/secret.yaml diff --git a/sentry-kubernetes/templates/serviceaccount.yaml b/charts/sentry-kubernetes/templates/serviceaccount.yaml similarity index 100% rename from sentry-kubernetes/templates/serviceaccount.yaml rename to charts/sentry-kubernetes/templates/serviceaccount.yaml diff --git a/sentry-kubernetes/values.yaml b/charts/sentry-kubernetes/values.yaml similarity index 100% rename from sentry-kubernetes/values.yaml rename to charts/sentry-kubernetes/values.yaml diff --git a/sentry/.gitignore b/charts/sentry/.gitignore similarity index 100% rename from sentry/.gitignore rename to charts/sentry/.gitignore diff --git a/sentry/.helmignore b/charts/sentry/.helmignore similarity index 100% rename from sentry/.helmignore rename to charts/sentry/.helmignore diff --git a/sentry/CHANGELOG.md b/charts/sentry/CHANGELOG.md similarity index 100% rename from sentry/CHANGELOG.md rename to charts/sentry/CHANGELOG.md diff --git a/sentry/Chart.lock b/charts/sentry/Chart.lock similarity index 100% rename from sentry/Chart.lock rename to charts/sentry/Chart.lock diff --git a/sentry/Chart.yaml b/charts/sentry/Chart.yaml similarity index 100% rename from sentry/Chart.yaml rename to charts/sentry/Chart.yaml diff --git a/sentry/README.md b/charts/sentry/README.md similarity index 100% rename from sentry/README.md rename to charts/sentry/README.md diff --git a/sentry/docs/UPGRADE.md b/charts/sentry/docs/UPGRADE.md similarity index 100% rename from sentry/docs/UPGRADE.md rename to charts/sentry/docs/UPGRADE.md diff --git a/sentry/docs/usage-aws-terraform.md b/charts/sentry/docs/usage-aws-terraform.md similarity index 100% rename from sentry/docs/usage-aws-terraform.md rename to charts/sentry/docs/usage-aws-terraform.md diff --git a/sentry/docs/usage-digitalocean.md b/charts/sentry/docs/usage-digitalocean.md similarity index 100% rename from sentry/docs/usage-digitalocean.md rename to charts/sentry/docs/usage-digitalocean.md diff --git a/sentry/templates/NOTES.txt b/charts/sentry/templates/NOTES.txt similarity index 100% rename from sentry/templates/NOTES.txt rename to charts/sentry/templates/NOTES.txt diff --git a/sentry/templates/_helper-sentry-relay.tpl b/charts/sentry/templates/_helper-sentry-relay.tpl similarity index 100% rename from sentry/templates/_helper-sentry-relay.tpl rename to charts/sentry/templates/_helper-sentry-relay.tpl diff --git a/sentry/templates/_helper-sentry.tpl b/charts/sentry/templates/_helper-sentry.tpl similarity index 100% rename from sentry/templates/_helper-sentry.tpl rename to charts/sentry/templates/_helper-sentry.tpl diff --git a/sentry/templates/_helper-snuba.tpl b/charts/sentry/templates/_helper-snuba.tpl similarity index 100% rename from sentry/templates/_helper-snuba.tpl rename to charts/sentry/templates/_helper-snuba.tpl diff --git a/sentry/templates/_helper-symbolicator.tpl b/charts/sentry/templates/_helper-symbolicator.tpl similarity index 100% rename from sentry/templates/_helper-symbolicator.tpl rename to charts/sentry/templates/_helper-symbolicator.tpl diff --git a/sentry/templates/_helper.tpl b/charts/sentry/templates/_helper.tpl similarity index 100% rename from sentry/templates/_helper.tpl rename to charts/sentry/templates/_helper.tpl diff --git a/sentry/templates/configmap-memcached.yaml b/charts/sentry/templates/configmap-memcached.yaml similarity index 100% rename from sentry/templates/configmap-memcached.yaml rename to charts/sentry/templates/configmap-memcached.yaml diff --git a/sentry/templates/configmap-nginx.yaml b/charts/sentry/templates/configmap-nginx.yaml similarity index 100% rename from sentry/templates/configmap-nginx.yaml rename to charts/sentry/templates/configmap-nginx.yaml diff --git a/sentry/templates/configmap-relay.yaml b/charts/sentry/templates/configmap-relay.yaml similarity index 100% rename from sentry/templates/configmap-relay.yaml rename to charts/sentry/templates/configmap-relay.yaml diff --git a/sentry/templates/configmap-sentry.yaml b/charts/sentry/templates/configmap-sentry.yaml similarity index 100% rename from sentry/templates/configmap-sentry.yaml rename to charts/sentry/templates/configmap-sentry.yaml diff --git a/sentry/templates/configmap-snuba.yaml b/charts/sentry/templates/configmap-snuba.yaml similarity index 100% rename from sentry/templates/configmap-snuba.yaml rename to charts/sentry/templates/configmap-snuba.yaml diff --git a/sentry/templates/configmap-symbolicator.yaml b/charts/sentry/templates/configmap-symbolicator.yaml similarity index 100% rename from sentry/templates/configmap-symbolicator.yaml rename to charts/sentry/templates/configmap-symbolicator.yaml diff --git a/sentry/templates/cronjob-sentry-cleanup.yaml b/charts/sentry/templates/cronjob-sentry-cleanup.yaml similarity index 100% rename from sentry/templates/cronjob-sentry-cleanup.yaml rename to charts/sentry/templates/cronjob-sentry-cleanup.yaml diff --git a/sentry/templates/deployment-metrics.yaml b/charts/sentry/templates/deployment-metrics.yaml similarity index 100% rename from sentry/templates/deployment-metrics.yaml rename to charts/sentry/templates/deployment-metrics.yaml diff --git a/sentry/templates/deployment-relay.yaml b/charts/sentry/templates/deployment-relay.yaml similarity index 100% rename from sentry/templates/deployment-relay.yaml rename to charts/sentry/templates/deployment-relay.yaml diff --git a/sentry/templates/deployment-sentry-billing-metrics-consumer.yaml b/charts/sentry/templates/deployment-sentry-billing-metrics-consumer.yaml similarity index 100% rename from sentry/templates/deployment-sentry-billing-metrics-consumer.yaml rename to charts/sentry/templates/deployment-sentry-billing-metrics-consumer.yaml diff --git a/sentry/templates/deployment-sentry-cron.yaml b/charts/sentry/templates/deployment-sentry-cron.yaml similarity index 100% rename from sentry/templates/deployment-sentry-cron.yaml rename to charts/sentry/templates/deployment-sentry-cron.yaml diff --git a/sentry/templates/deployment-sentry-generic-metrics-consumer.yaml b/charts/sentry/templates/deployment-sentry-generic-metrics-consumer.yaml similarity index 100% rename from sentry/templates/deployment-sentry-generic-metrics-consumer.yaml rename to charts/sentry/templates/deployment-sentry-generic-metrics-consumer.yaml diff --git a/sentry/templates/deployment-sentry-ingest-consumer-attachments.yaml b/charts/sentry/templates/deployment-sentry-ingest-consumer-attachments.yaml similarity index 100% rename from sentry/templates/deployment-sentry-ingest-consumer-attachments.yaml rename to charts/sentry/templates/deployment-sentry-ingest-consumer-attachments.yaml diff --git a/sentry/templates/deployment-sentry-ingest-consumer-events.yaml b/charts/sentry/templates/deployment-sentry-ingest-consumer-events.yaml similarity index 100% rename from sentry/templates/deployment-sentry-ingest-consumer-events.yaml rename to charts/sentry/templates/deployment-sentry-ingest-consumer-events.yaml diff --git a/sentry/templates/deployment-sentry-ingest-consumer-transactions.yaml b/charts/sentry/templates/deployment-sentry-ingest-consumer-transactions.yaml similarity index 100% rename from sentry/templates/deployment-sentry-ingest-consumer-transactions.yaml rename to charts/sentry/templates/deployment-sentry-ingest-consumer-transactions.yaml diff --git a/sentry/templates/deployment-sentry-ingest-monitors.yaml b/charts/sentry/templates/deployment-sentry-ingest-monitors.yaml similarity index 100% rename from sentry/templates/deployment-sentry-ingest-monitors.yaml rename to charts/sentry/templates/deployment-sentry-ingest-monitors.yaml diff --git a/sentry/templates/deployment-sentry-ingest-occurrences.yaml b/charts/sentry/templates/deployment-sentry-ingest-occurrences.yaml similarity index 100% rename from sentry/templates/deployment-sentry-ingest-occurrences.yaml rename to charts/sentry/templates/deployment-sentry-ingest-occurrences.yaml diff --git a/sentry/templates/deployment-sentry-ingest-profiles.yaml b/charts/sentry/templates/deployment-sentry-ingest-profiles.yaml similarity index 100% rename from sentry/templates/deployment-sentry-ingest-profiles.yaml rename to charts/sentry/templates/deployment-sentry-ingest-profiles.yaml diff --git a/sentry/templates/deployment-sentry-ingest-replay-recordings.yaml b/charts/sentry/templates/deployment-sentry-ingest-replay-recordings.yaml similarity index 100% rename from sentry/templates/deployment-sentry-ingest-replay-recordings.yaml rename to charts/sentry/templates/deployment-sentry-ingest-replay-recordings.yaml diff --git a/sentry/templates/deployment-sentry-metrics-consumer.yaml b/charts/sentry/templates/deployment-sentry-metrics-consumer.yaml similarity index 100% rename from sentry/templates/deployment-sentry-metrics-consumer.yaml rename to charts/sentry/templates/deployment-sentry-metrics-consumer.yaml diff --git a/sentry/templates/deployment-sentry-post-process-forwarder-errors.yaml b/charts/sentry/templates/deployment-sentry-post-process-forwarder-errors.yaml similarity index 100% rename from sentry/templates/deployment-sentry-post-process-forwarder-errors.yaml rename to charts/sentry/templates/deployment-sentry-post-process-forwarder-errors.yaml diff --git a/sentry/templates/deployment-sentry-post-process-forwarder-issue-platform.yaml b/charts/sentry/templates/deployment-sentry-post-process-forwarder-issue-platform.yaml similarity index 100% rename from sentry/templates/deployment-sentry-post-process-forwarder-issue-platform.yaml rename to charts/sentry/templates/deployment-sentry-post-process-forwarder-issue-platform.yaml diff --git a/sentry/templates/deployment-sentry-post-process-forwarder-transactions.yaml b/charts/sentry/templates/deployment-sentry-post-process-forwarder-transactions.yaml similarity index 100% rename from sentry/templates/deployment-sentry-post-process-forwarder-transactions.yaml rename to charts/sentry/templates/deployment-sentry-post-process-forwarder-transactions.yaml diff --git a/sentry/templates/deployment-sentry-subscription-consumer-events.yaml b/charts/sentry/templates/deployment-sentry-subscription-consumer-events.yaml similarity index 100% rename from sentry/templates/deployment-sentry-subscription-consumer-events.yaml rename to charts/sentry/templates/deployment-sentry-subscription-consumer-events.yaml diff --git a/sentry/templates/deployment-sentry-subscription-consumer-generic-metrics.yaml b/charts/sentry/templates/deployment-sentry-subscription-consumer-generic-metrics.yaml similarity index 100% rename from sentry/templates/deployment-sentry-subscription-consumer-generic-metrics.yaml rename to charts/sentry/templates/deployment-sentry-subscription-consumer-generic-metrics.yaml diff --git a/sentry/templates/deployment-sentry-subscription-consumer-metrics.yaml b/charts/sentry/templates/deployment-sentry-subscription-consumer-metrics.yaml similarity index 100% rename from sentry/templates/deployment-sentry-subscription-consumer-metrics.yaml rename to charts/sentry/templates/deployment-sentry-subscription-consumer-metrics.yaml diff --git a/sentry/templates/deployment-sentry-subscription-consumer-transactions.yaml b/charts/sentry/templates/deployment-sentry-subscription-consumer-transactions.yaml similarity index 100% rename from sentry/templates/deployment-sentry-subscription-consumer-transactions.yaml rename to charts/sentry/templates/deployment-sentry-subscription-consumer-transactions.yaml diff --git a/sentry/templates/deployment-sentry-web.yaml b/charts/sentry/templates/deployment-sentry-web.yaml similarity index 100% rename from sentry/templates/deployment-sentry-web.yaml rename to charts/sentry/templates/deployment-sentry-web.yaml diff --git a/sentry/templates/deployment-sentry-worker-events.yaml b/charts/sentry/templates/deployment-sentry-worker-events.yaml similarity index 100% rename from sentry/templates/deployment-sentry-worker-events.yaml rename to charts/sentry/templates/deployment-sentry-worker-events.yaml diff --git a/sentry/templates/deployment-sentry-worker-transactions.yaml b/charts/sentry/templates/deployment-sentry-worker-transactions.yaml similarity index 100% rename from sentry/templates/deployment-sentry-worker-transactions.yaml rename to charts/sentry/templates/deployment-sentry-worker-transactions.yaml diff --git a/sentry/templates/deployment-sentry-worker.yaml b/charts/sentry/templates/deployment-sentry-worker.yaml similarity index 100% rename from sentry/templates/deployment-sentry-worker.yaml rename to charts/sentry/templates/deployment-sentry-worker.yaml diff --git a/sentry/templates/deployment-snuba-api.yaml b/charts/sentry/templates/deployment-snuba-api.yaml similarity index 100% rename from sentry/templates/deployment-snuba-api.yaml rename to charts/sentry/templates/deployment-snuba-api.yaml diff --git a/sentry/templates/deployment-snuba-consumer.yaml b/charts/sentry/templates/deployment-snuba-consumer.yaml similarity index 100% rename from sentry/templates/deployment-snuba-consumer.yaml rename to charts/sentry/templates/deployment-snuba-consumer.yaml diff --git a/sentry/templates/deployment-snuba-generic-metrics-counters-consumer.yaml b/charts/sentry/templates/deployment-snuba-generic-metrics-counters-consumer.yaml similarity index 100% rename from sentry/templates/deployment-snuba-generic-metrics-counters-consumer.yaml rename to charts/sentry/templates/deployment-snuba-generic-metrics-counters-consumer.yaml diff --git a/sentry/templates/deployment-snuba-generic-metrics-distributions-consumer.yaml b/charts/sentry/templates/deployment-snuba-generic-metrics-distributions-consumer.yaml similarity index 100% rename from sentry/templates/deployment-snuba-generic-metrics-distributions-consumer.yaml rename to charts/sentry/templates/deployment-snuba-generic-metrics-distributions-consumer.yaml diff --git a/sentry/templates/deployment-snuba-generic-metrics-sets-consumer.yaml b/charts/sentry/templates/deployment-snuba-generic-metrics-sets-consumer.yaml similarity index 100% rename from sentry/templates/deployment-snuba-generic-metrics-sets-consumer.yaml rename to charts/sentry/templates/deployment-snuba-generic-metrics-sets-consumer.yaml diff --git a/sentry/templates/deployment-snuba-group-attributes-consumer.yaml b/charts/sentry/templates/deployment-snuba-group-attributes-consumer.yaml similarity index 100% rename from sentry/templates/deployment-snuba-group-attributes-consumer.yaml rename to charts/sentry/templates/deployment-snuba-group-attributes-consumer.yaml diff --git a/sentry/templates/deployment-snuba-issue-occurrence-consumer.yaml b/charts/sentry/templates/deployment-snuba-issue-occurrence-consumer.yaml similarity index 100% rename from sentry/templates/deployment-snuba-issue-occurrence-consumer.yaml rename to charts/sentry/templates/deployment-snuba-issue-occurrence-consumer.yaml diff --git a/sentry/templates/deployment-snuba-metrics-consumer.yaml b/charts/sentry/templates/deployment-snuba-metrics-consumer.yaml similarity index 100% rename from sentry/templates/deployment-snuba-metrics-consumer.yaml rename to charts/sentry/templates/deployment-snuba-metrics-consumer.yaml diff --git a/sentry/templates/deployment-snuba-outcomes-billing-consumer.yaml b/charts/sentry/templates/deployment-snuba-outcomes-billing-consumer.yaml similarity index 100% rename from sentry/templates/deployment-snuba-outcomes-billing-consumer.yaml rename to charts/sentry/templates/deployment-snuba-outcomes-billing-consumer.yaml diff --git a/sentry/templates/deployment-snuba-outcomes-consumer.yaml b/charts/sentry/templates/deployment-snuba-outcomes-consumer.yaml similarity index 100% rename from sentry/templates/deployment-snuba-outcomes-consumer.yaml rename to charts/sentry/templates/deployment-snuba-outcomes-consumer.yaml diff --git a/sentry/templates/deployment-snuba-profiling-functions-consumer.yaml b/charts/sentry/templates/deployment-snuba-profiling-functions-consumer.yaml similarity index 100% rename from sentry/templates/deployment-snuba-profiling-functions-consumer.yaml rename to charts/sentry/templates/deployment-snuba-profiling-functions-consumer.yaml diff --git a/sentry/templates/deployment-snuba-profiling-profiles-consumer.yaml b/charts/sentry/templates/deployment-snuba-profiling-profiles-consumer.yaml similarity index 100% rename from sentry/templates/deployment-snuba-profiling-profiles-consumer.yaml rename to charts/sentry/templates/deployment-snuba-profiling-profiles-consumer.yaml diff --git a/sentry/templates/deployment-snuba-replacer.yaml b/charts/sentry/templates/deployment-snuba-replacer.yaml similarity index 100% rename from sentry/templates/deployment-snuba-replacer.yaml rename to charts/sentry/templates/deployment-snuba-replacer.yaml diff --git a/sentry/templates/deployment-snuba-replays-consumer.yaml b/charts/sentry/templates/deployment-snuba-replays-consumer.yaml similarity index 100% rename from sentry/templates/deployment-snuba-replays-consumer.yaml rename to charts/sentry/templates/deployment-snuba-replays-consumer.yaml diff --git a/sentry/templates/deployment-snuba-spans-consumer.yaml b/charts/sentry/templates/deployment-snuba-spans-consumer.yaml similarity index 100% rename from sentry/templates/deployment-snuba-spans-consumer.yaml rename to charts/sentry/templates/deployment-snuba-spans-consumer.yaml diff --git a/sentry/templates/deployment-snuba-subscription-consumer-events.yaml b/charts/sentry/templates/deployment-snuba-subscription-consumer-events.yaml similarity index 100% rename from sentry/templates/deployment-snuba-subscription-consumer-events.yaml rename to charts/sentry/templates/deployment-snuba-subscription-consumer-events.yaml diff --git a/sentry/templates/deployment-snuba-subscription-consumer-metrics.yaml b/charts/sentry/templates/deployment-snuba-subscription-consumer-metrics.yaml similarity index 100% rename from sentry/templates/deployment-snuba-subscription-consumer-metrics.yaml rename to charts/sentry/templates/deployment-snuba-subscription-consumer-metrics.yaml diff --git a/sentry/templates/deployment-snuba-subscription-consumer-transactions.yaml b/charts/sentry/templates/deployment-snuba-subscription-consumer-transactions.yaml similarity index 100% rename from sentry/templates/deployment-snuba-subscription-consumer-transactions.yaml rename to charts/sentry/templates/deployment-snuba-subscription-consumer-transactions.yaml diff --git a/sentry/templates/deployment-snuba-transactions-consumer.yaml b/charts/sentry/templates/deployment-snuba-transactions-consumer.yaml similarity index 100% rename from sentry/templates/deployment-snuba-transactions-consumer.yaml rename to charts/sentry/templates/deployment-snuba-transactions-consumer.yaml diff --git a/sentry/templates/deployment-symbolicator.yaml b/charts/sentry/templates/deployment-symbolicator.yaml similarity index 100% rename from sentry/templates/deployment-symbolicator.yaml rename to charts/sentry/templates/deployment-symbolicator.yaml diff --git a/sentry/templates/deployment-vroom.yaml b/charts/sentry/templates/deployment-vroom.yaml similarity index 100% rename from sentry/templates/deployment-vroom.yaml rename to charts/sentry/templates/deployment-vroom.yaml diff --git a/sentry/templates/extra-manifest.yaml b/charts/sentry/templates/extra-manifest.yaml similarity index 100% rename from sentry/templates/extra-manifest.yaml rename to charts/sentry/templates/extra-manifest.yaml diff --git a/sentry/templates/gke/backendconfig-sentry-relay.yaml b/charts/sentry/templates/gke/backendconfig-sentry-relay.yaml similarity index 100% rename from sentry/templates/gke/backendconfig-sentry-relay.yaml rename to charts/sentry/templates/gke/backendconfig-sentry-relay.yaml diff --git a/sentry/templates/gke/backendconfig-sentry-web.yaml b/charts/sentry/templates/gke/backendconfig-sentry-web.yaml similarity index 100% rename from sentry/templates/gke/backendconfig-sentry-web.yaml rename to charts/sentry/templates/gke/backendconfig-sentry-web.yaml diff --git a/sentry/templates/hooks/sentry-db-check.job.yaml b/charts/sentry/templates/hooks/sentry-db-check.job.yaml similarity index 100% rename from sentry/templates/hooks/sentry-db-check.job.yaml rename to charts/sentry/templates/hooks/sentry-db-check.job.yaml diff --git a/sentry/templates/hooks/sentry-db-init.job.yaml b/charts/sentry/templates/hooks/sentry-db-init.job.yaml similarity index 100% rename from sentry/templates/hooks/sentry-db-init.job.yaml rename to charts/sentry/templates/hooks/sentry-db-init.job.yaml diff --git a/sentry/templates/hooks/sentry-secret-create.yaml b/charts/sentry/templates/hooks/sentry-secret-create.yaml similarity index 100% rename from sentry/templates/hooks/sentry-secret-create.yaml rename to charts/sentry/templates/hooks/sentry-secret-create.yaml diff --git a/sentry/templates/hooks/snuba-db-init.job.yaml b/charts/sentry/templates/hooks/snuba-db-init.job.yaml similarity index 100% rename from sentry/templates/hooks/snuba-db-init.job.yaml rename to charts/sentry/templates/hooks/snuba-db-init.job.yaml diff --git a/sentry/templates/hooks/snuba-migrate.job.yaml b/charts/sentry/templates/hooks/snuba-migrate.job.yaml similarity index 100% rename from sentry/templates/hooks/snuba-migrate.job.yaml rename to charts/sentry/templates/hooks/snuba-migrate.job.yaml diff --git a/sentry/templates/hooks/user-create.yaml b/charts/sentry/templates/hooks/user-create.yaml similarity index 100% rename from sentry/templates/hooks/user-create.yaml rename to charts/sentry/templates/hooks/user-create.yaml diff --git a/sentry/templates/hpa-ingest-consumer-attachments.yaml b/charts/sentry/templates/hpa-ingest-consumer-attachments.yaml similarity index 100% rename from sentry/templates/hpa-ingest-consumer-attachments.yaml rename to charts/sentry/templates/hpa-ingest-consumer-attachments.yaml diff --git a/sentry/templates/hpa-ingest-consumer-events.yaml b/charts/sentry/templates/hpa-ingest-consumer-events.yaml similarity index 100% rename from sentry/templates/hpa-ingest-consumer-events.yaml rename to charts/sentry/templates/hpa-ingest-consumer-events.yaml diff --git a/sentry/templates/hpa-ingest-consumer-transactions.yaml b/charts/sentry/templates/hpa-ingest-consumer-transactions.yaml similarity index 100% rename from sentry/templates/hpa-ingest-consumer-transactions.yaml rename to charts/sentry/templates/hpa-ingest-consumer-transactions.yaml diff --git a/sentry/templates/hpa-relay.yaml b/charts/sentry/templates/hpa-relay.yaml similarity index 100% rename from sentry/templates/hpa-relay.yaml rename to charts/sentry/templates/hpa-relay.yaml diff --git a/sentry/templates/hpa-snuba-api.yaml b/charts/sentry/templates/hpa-snuba-api.yaml similarity index 100% rename from sentry/templates/hpa-snuba-api.yaml rename to charts/sentry/templates/hpa-snuba-api.yaml diff --git a/sentry/templates/hpa-vroom.yaml b/charts/sentry/templates/hpa-vroom.yaml similarity index 100% rename from sentry/templates/hpa-vroom.yaml rename to charts/sentry/templates/hpa-vroom.yaml diff --git a/sentry/templates/hpa-web.yaml b/charts/sentry/templates/hpa-web.yaml similarity index 100% rename from sentry/templates/hpa-web.yaml rename to charts/sentry/templates/hpa-web.yaml diff --git a/sentry/templates/hpa-worker-events.yaml b/charts/sentry/templates/hpa-worker-events.yaml similarity index 100% rename from sentry/templates/hpa-worker-events.yaml rename to charts/sentry/templates/hpa-worker-events.yaml diff --git a/sentry/templates/hpa-worker-transactions.yaml b/charts/sentry/templates/hpa-worker-transactions.yaml similarity index 100% rename from sentry/templates/hpa-worker-transactions.yaml rename to charts/sentry/templates/hpa-worker-transactions.yaml diff --git a/sentry/templates/hpa-worker.yaml b/charts/sentry/templates/hpa-worker.yaml similarity index 100% rename from sentry/templates/hpa-worker.yaml rename to charts/sentry/templates/hpa-worker.yaml diff --git a/sentry/templates/ingress.yaml b/charts/sentry/templates/ingress.yaml similarity index 100% rename from sentry/templates/ingress.yaml rename to charts/sentry/templates/ingress.yaml diff --git a/sentry/templates/pvc.yaml b/charts/sentry/templates/pvc.yaml similarity index 100% rename from sentry/templates/pvc.yaml rename to charts/sentry/templates/pvc.yaml diff --git a/sentry/templates/secret-snuba-env.yaml b/charts/sentry/templates/secret-snuba-env.yaml similarity index 100% rename from sentry/templates/secret-snuba-env.yaml rename to charts/sentry/templates/secret-snuba-env.yaml diff --git a/sentry/templates/service-metrics.yaml b/charts/sentry/templates/service-metrics.yaml similarity index 100% rename from sentry/templates/service-metrics.yaml rename to charts/sentry/templates/service-metrics.yaml diff --git a/sentry/templates/service-relay.yaml b/charts/sentry/templates/service-relay.yaml similarity index 100% rename from sentry/templates/service-relay.yaml rename to charts/sentry/templates/service-relay.yaml diff --git a/sentry/templates/service-sentry.yaml b/charts/sentry/templates/service-sentry.yaml similarity index 100% rename from sentry/templates/service-sentry.yaml rename to charts/sentry/templates/service-sentry.yaml diff --git a/sentry/templates/service-snuba.yaml b/charts/sentry/templates/service-snuba.yaml similarity index 100% rename from sentry/templates/service-snuba.yaml rename to charts/sentry/templates/service-snuba.yaml diff --git a/sentry/templates/service-symbolicator.yaml b/charts/sentry/templates/service-symbolicator.yaml similarity index 100% rename from sentry/templates/service-symbolicator.yaml rename to charts/sentry/templates/service-symbolicator.yaml diff --git a/sentry/templates/service-vroom.yaml b/charts/sentry/templates/service-vroom.yaml similarity index 100% rename from sentry/templates/service-vroom.yaml rename to charts/sentry/templates/service-vroom.yaml diff --git a/sentry/templates/serviceaccount-metrics.yaml b/charts/sentry/templates/serviceaccount-metrics.yaml similarity index 100% rename from sentry/templates/serviceaccount-metrics.yaml rename to charts/sentry/templates/serviceaccount-metrics.yaml diff --git a/sentry/templates/serviceaccount-relay.yaml b/charts/sentry/templates/serviceaccount-relay.yaml similarity index 100% rename from sentry/templates/serviceaccount-relay.yaml rename to charts/sentry/templates/serviceaccount-relay.yaml diff --git a/sentry/templates/serviceaccount-sentry-billing-metrics-consumer.yaml b/charts/sentry/templates/serviceaccount-sentry-billing-metrics-consumer.yaml similarity index 100% rename from sentry/templates/serviceaccount-sentry-billing-metrics-consumer.yaml rename to charts/sentry/templates/serviceaccount-sentry-billing-metrics-consumer.yaml diff --git a/sentry/templates/serviceaccount-sentry-cleanup.yaml b/charts/sentry/templates/serviceaccount-sentry-cleanup.yaml similarity index 100% rename from sentry/templates/serviceaccount-sentry-cleanup.yaml rename to charts/sentry/templates/serviceaccount-sentry-cleanup.yaml diff --git a/sentry/templates/serviceaccount-sentry-cron.yaml b/charts/sentry/templates/serviceaccount-sentry-cron.yaml similarity index 100% rename from sentry/templates/serviceaccount-sentry-cron.yaml rename to charts/sentry/templates/serviceaccount-sentry-cron.yaml diff --git a/sentry/templates/serviceaccount-sentry-generic-metrics-consumer.yaml b/charts/sentry/templates/serviceaccount-sentry-generic-metrics-consumer.yaml similarity index 100% rename from sentry/templates/serviceaccount-sentry-generic-metrics-consumer.yaml rename to charts/sentry/templates/serviceaccount-sentry-generic-metrics-consumer.yaml diff --git a/sentry/templates/serviceaccount-sentry-ingest-consumer-attachments.yaml b/charts/sentry/templates/serviceaccount-sentry-ingest-consumer-attachments.yaml similarity index 100% rename from sentry/templates/serviceaccount-sentry-ingest-consumer-attachments.yaml rename to charts/sentry/templates/serviceaccount-sentry-ingest-consumer-attachments.yaml diff --git a/sentry/templates/serviceaccount-sentry-ingest-consumer-events.yaml b/charts/sentry/templates/serviceaccount-sentry-ingest-consumer-events.yaml similarity index 100% rename from sentry/templates/serviceaccount-sentry-ingest-consumer-events.yaml rename to charts/sentry/templates/serviceaccount-sentry-ingest-consumer-events.yaml diff --git a/sentry/templates/serviceaccount-sentry-ingest-consumer-transactions.yaml b/charts/sentry/templates/serviceaccount-sentry-ingest-consumer-transactions.yaml similarity index 100% rename from sentry/templates/serviceaccount-sentry-ingest-consumer-transactions.yaml rename to charts/sentry/templates/serviceaccount-sentry-ingest-consumer-transactions.yaml diff --git a/sentry/templates/serviceaccount-sentry-ingest-monitors.yaml b/charts/sentry/templates/serviceaccount-sentry-ingest-monitors.yaml similarity index 100% rename from sentry/templates/serviceaccount-sentry-ingest-monitors.yaml rename to charts/sentry/templates/serviceaccount-sentry-ingest-monitors.yaml diff --git a/sentry/templates/serviceaccount-sentry-ingest-occurrences.yaml b/charts/sentry/templates/serviceaccount-sentry-ingest-occurrences.yaml similarity index 100% rename from sentry/templates/serviceaccount-sentry-ingest-occurrences.yaml rename to charts/sentry/templates/serviceaccount-sentry-ingest-occurrences.yaml diff --git a/sentry/templates/serviceaccount-sentry-ingest-profiles.yaml b/charts/sentry/templates/serviceaccount-sentry-ingest-profiles.yaml similarity index 100% rename from sentry/templates/serviceaccount-sentry-ingest-profiles.yaml rename to charts/sentry/templates/serviceaccount-sentry-ingest-profiles.yaml diff --git a/sentry/templates/serviceaccount-sentry-ingest-replay-recordings.yaml b/charts/sentry/templates/serviceaccount-sentry-ingest-replay-recordings.yaml similarity index 100% rename from sentry/templates/serviceaccount-sentry-ingest-replay-recordings.yaml rename to charts/sentry/templates/serviceaccount-sentry-ingest-replay-recordings.yaml diff --git a/sentry/templates/serviceaccount-sentry-metrics-consumer.yaml b/charts/sentry/templates/serviceaccount-sentry-metrics-consumer.yaml similarity index 100% rename from sentry/templates/serviceaccount-sentry-metrics-consumer.yaml rename to charts/sentry/templates/serviceaccount-sentry-metrics-consumer.yaml diff --git a/sentry/templates/serviceaccount-sentry-post-process-forwarder-errors.yaml b/charts/sentry/templates/serviceaccount-sentry-post-process-forwarder-errors.yaml similarity index 100% rename from sentry/templates/serviceaccount-sentry-post-process-forwarder-errors.yaml rename to charts/sentry/templates/serviceaccount-sentry-post-process-forwarder-errors.yaml diff --git a/sentry/templates/serviceaccount-sentry-post-process-forwarder-issue-platform.yaml b/charts/sentry/templates/serviceaccount-sentry-post-process-forwarder-issue-platform.yaml similarity index 100% rename from sentry/templates/serviceaccount-sentry-post-process-forwarder-issue-platform.yaml rename to charts/sentry/templates/serviceaccount-sentry-post-process-forwarder-issue-platform.yaml diff --git a/sentry/templates/serviceaccount-sentry-post-process-forwarder-transactions.yaml b/charts/sentry/templates/serviceaccount-sentry-post-process-forwarder-transactions.yaml similarity index 100% rename from sentry/templates/serviceaccount-sentry-post-process-forwarder-transactions.yaml rename to charts/sentry/templates/serviceaccount-sentry-post-process-forwarder-transactions.yaml diff --git a/sentry/templates/serviceaccount-sentry-subscription-consumer-events.yaml b/charts/sentry/templates/serviceaccount-sentry-subscription-consumer-events.yaml similarity index 100% rename from sentry/templates/serviceaccount-sentry-subscription-consumer-events.yaml rename to charts/sentry/templates/serviceaccount-sentry-subscription-consumer-events.yaml diff --git a/sentry/templates/serviceaccount-sentry-subscription-consumer-generic-metrics.yaml b/charts/sentry/templates/serviceaccount-sentry-subscription-consumer-generic-metrics.yaml similarity index 100% rename from sentry/templates/serviceaccount-sentry-subscription-consumer-generic-metrics.yaml rename to charts/sentry/templates/serviceaccount-sentry-subscription-consumer-generic-metrics.yaml diff --git a/sentry/templates/serviceaccount-sentry-subscription-consumer-metrics.yaml b/charts/sentry/templates/serviceaccount-sentry-subscription-consumer-metrics.yaml similarity index 100% rename from sentry/templates/serviceaccount-sentry-subscription-consumer-metrics.yaml rename to charts/sentry/templates/serviceaccount-sentry-subscription-consumer-metrics.yaml diff --git a/sentry/templates/serviceaccount-sentry-subscription-consumer-transactions.yaml b/charts/sentry/templates/serviceaccount-sentry-subscription-consumer-transactions.yaml similarity index 100% rename from sentry/templates/serviceaccount-sentry-subscription-consumer-transactions.yaml rename to charts/sentry/templates/serviceaccount-sentry-subscription-consumer-transactions.yaml diff --git a/sentry/templates/serviceaccount-sentry-vroom.yaml b/charts/sentry/templates/serviceaccount-sentry-vroom.yaml similarity index 100% rename from sentry/templates/serviceaccount-sentry-vroom.yaml rename to charts/sentry/templates/serviceaccount-sentry-vroom.yaml diff --git a/sentry/templates/serviceaccount-sentry-web.yaml b/charts/sentry/templates/serviceaccount-sentry-web.yaml similarity index 100% rename from sentry/templates/serviceaccount-sentry-web.yaml rename to charts/sentry/templates/serviceaccount-sentry-web.yaml diff --git a/sentry/templates/serviceaccount-sentry-worker.yaml b/charts/sentry/templates/serviceaccount-sentry-worker.yaml similarity index 100% rename from sentry/templates/serviceaccount-sentry-worker.yaml rename to charts/sentry/templates/serviceaccount-sentry-worker.yaml diff --git a/sentry/templates/serviceaccount-snuba.yaml b/charts/sentry/templates/serviceaccount-snuba.yaml similarity index 100% rename from sentry/templates/serviceaccount-snuba.yaml rename to charts/sentry/templates/serviceaccount-snuba.yaml diff --git a/sentry/templates/serviceaccount-symbolicator.yaml b/charts/sentry/templates/serviceaccount-symbolicator.yaml similarity index 100% rename from sentry/templates/serviceaccount-symbolicator.yaml rename to charts/sentry/templates/serviceaccount-symbolicator.yaml diff --git a/sentry/templates/servicemonitor-metrics.yaml b/charts/sentry/templates/servicemonitor-metrics.yaml similarity index 100% rename from sentry/templates/servicemonitor-metrics.yaml rename to charts/sentry/templates/servicemonitor-metrics.yaml diff --git a/sentry/values.yaml b/charts/sentry/values.yaml similarity index 99% rename from sentry/values.yaml rename to charts/sentry/values.yaml index 18f0dd104..3538744b1 100644 --- a/sentry/values.yaml +++ b/charts/sentry/values.yaml @@ -189,11 +189,11 @@ sentry: enableFeedback: false enableSpan: false - #example customFeature to enable Metrics(beta) https://docs.sentry.io/product/metrics/ - #customFeatures: - #- organizations:custom-metric - #- organizations:custom-metrics-experimental - #- organizations:derive-code-mappings + # example customFeature to enable Metrics(beta) https://docs.sentry.io/product/metrics/ + # customFeatures: + # - organizations:custom-metric + # - organizations:custom-metrics-experimental + # - organizations:derive-code-mappings worker: enabled: true @@ -1619,13 +1619,13 @@ nginx: ports: http: 80 extraLocationSnippet: false - #extraLocationSnippet: | + # extraLocationSnippet: | # location /admin { # allow 1.2.3.4; # VPN network # deny all; # proxy_pass http://sentry; # } - ## Use this to enable an extra service account + # Use this to enable an extra service account # serviceAccount: # create: false # name: nginx @@ -1992,7 +1992,7 @@ externalPostgresql: username: postgres # password: postgres # existingSecret: secret-name - ## set existingSecretKeys in a secret, if not specified, value from the secret won't be used + ## set existingSecretKeys in a secret, if not specified, value from the secret won't be used existingSecretKeys: {} # password: password # username: username diff --git a/release-please-config.json b/release-please-config.json index 2e3027c5a..d29ff6e48 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -1,15 +1,15 @@ { "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json", "packages": { - "clickhouse": { + "charts/clickhouse": { "release-type": "helm", "changelog-path": "CHANGELOG.md" }, - "sentry": { + "charts/sentry": { "release-type": "helm", "changelog-path": "CHANGELOG.md" }, - "sentry-kubernetes": { + "charts/sentry-kubernetes": { "release-type": "helm", "changelog-path": "CHANGELOG.md" }