You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+42Lines changed: 42 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -59,6 +59,48 @@ You can also override the default config values with environment variables via t
59
59
60
60
Note the values must be still be named as `FLIPT_<CONFIG_KEY>` per the [documentation](https://flipt.io/docs/configuration#environment-variables).
61
61
62
+
### Ingress Configuration
63
+
64
+
The chart supports ingress configuration with automatic generation of the required configuration. To enable the ingress controller, set `ingress.enabled=true` in your values file:
65
+
66
+
```yaml
67
+
flipt:
68
+
ingress:
69
+
enabled: true
70
+
className: nginx # optional: only if you're using a specific ingress class
71
+
hosts:
72
+
- host: flipt.example.com
73
+
paths:
74
+
- path: /
75
+
pathType: Prefix
76
+
```
77
+
78
+
For more advanced configurations, such as TLS and custom annotations:
Please [create an issue](https://github.com/flipt-io/helm-charts/issues/new?labels=helm) or submit a pull request for any issues or missing features.
4
+
5
+
See the [README](https://github.com/flipt-io/helm-charts/blob/main/README.md) and [values.yaml](https://github.com/flipt-io/helm-charts/blob/main/charts/flipt/values.yaml) for more information.
0 commit comments