Skip to content

Commit

Permalink
Merge pull request #170 from sivanchic/fix/growthbook-ingress
Browse files Browse the repository at this point in the history
Fix growthbook chart ingress secret name
  • Loading branch information
bisonlou authored Sep 13, 2023
2 parents 122c8e4 + 39316b2 commit fbcac81
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/growthbook/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.14
version: 0.1.15

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
3 changes: 2 additions & 1 deletion charts/growthbook/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# growthbook

![Version: 0.1.14](https://img.shields.io/badge/Version-0.1.14-informational?style=flat-square)
![Version: 0.1.15](https://img.shields.io/badge/Version-0.1.15-informational?style=flat-square)

A Helm chart for Growthbook

Expand Down Expand Up @@ -73,6 +73,7 @@ $ helm install my-release one-acre-fund/growthbook
| ingress.appOriginName | string | `"my-app-origin.io"` | |
| ingress.enabled | bool | `false` | |
| ingress.name | string | `"growthbook-ingress"` | |
| ingress.secretName | string | `"growthbook-tls"` | |
| mongodb.architecture | string | `"standalone"` | |
| mongodb.auth.database | string | `"growthbook-db"` | |
| mongodb.auth.password | string | `"growthbook"` | |
Expand Down
2 changes: 1 addition & 1 deletion charts/growthbook/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ spec:
- hosts:
- {{ .Values.ingress.appOriginName }}
- {{ .Values.ingress.apiHostName }}
secretName: {{ .secretName }}
secretName: {{ .Values.ingress.secretName }}
{{- end -}}
1 change: 1 addition & 0 deletions charts/growthbook/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ service:
ingress:
enabled: false
name: growthbook-ingress
secretName: growthbook-tls
annotations:
kubernetes.io/ingress.class: nginx
nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
Expand Down

0 comments on commit fbcac81

Please sign in to comment.