Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: allow to configure extra manifests through values.yaml #1278

Merged
merged 1 commit into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
feat: allow to configure extra manifest through values
  • Loading branch information
karol-szymanowski committed May 22, 2024
commit ede797a36ad8d3b0bce01ff7cb390d06d015b2f2
1 change: 1 addition & 0 deletions sentry/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ Note: this table is incomplete, so have a look at the values.yaml in case you mi
| `snuba.transactionsConsumer.enabled` | Enable Snuba transactions consumer | `true` |
| `symbolicator.api.enabled` | Enable Symbolicator | `false` |
| `symbolicator.api.config` | Config file for Symbolicator, see [its docs](https://getsentry.github.io/symbolicator/#configuration) | see values.yaml |
| `extraManifests` | Extra K8s manifests to deploy | [] |

## NGINX and/or Ingress

Expand Down
4 changes: 4 additions & 0 deletions sentry/templates/extra-manifest.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{{- range .Values.extraManifests }}
---
{{ tpl (toYaml .) $ }}
{{- end }}
2 changes: 2 additions & 0 deletions sentry/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2079,3 +2079,5 @@ revisionHistoryLimit: 10
# nameservers: []
# searches: []
# options: []

extraManifests: []
Loading