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
OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable connectors.
6
6
@@ -162,6 +162,11 @@ ingress:
162
162
| ingress.annotations | object | `{}` | Annotations to be added to the ingress. |
163
163
| ingress.hosts | list | See [values.yaml](values.yaml). | Ingress host configuration. |
164
164
| ingress.tls | list | See [values.yaml](values.yaml). | Ingress TLS configuration. |
165
+
| httproute.enabled | bool | `false` | Enable Gateway API HTTPRoute. Gateway API support is in EXPERIMENTAL status. Support depends on your Gateway controller implementation. See the [Gateway API documentation](https://gateway-api.sigs.k8s.io/) for details. |
166
+
| httproute.annotations | object | `{}` | Annotations to be added to the HTTPRoute. |
167
+
| httproute.parentRefs | list | `[]` | References to the Gateway(s) that this HTTPRoute is attached to. See the [API reference](https://gateway-api.sigs.k8s.io/reference/spec/#gateway.networking.k8s.io/v1.ParentReference) for details. |
168
+
| httproute.hostnames | list | `["chart-example.local"]` | Hostnames defines the hostnames for routing. See the [API reference](https://gateway-api.sigs.k8s.io/reference/spec/#gateway.networking.k8s.io/v1.Hostname) for details. |
169
+
| httproute.rules | list | `[{"matches":[{"path":{"type":"PathPrefix","value":"/"}}]}]` | HTTPRoute rules configuration. See the [API reference](https://gateway-api.sigs.k8s.io/reference/spec/#gateway.networking.k8s.io/v1.HTTPRouteRule) for details. |
165
170
| serviceMonitor.enabled | bool | `false` | Enable Prometheus ServiceMonitor. See the [documentation](https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/design.md#servicemonitor) and the [API reference](https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/api.md#servicemonitor) for details. |
166
171
| serviceMonitor.namespace | string | Release namespace. | Namespace where the ServiceMonitor resource should be deployed. |
Copy file name to clipboardExpand all lines: charts/dex/values.yaml
+35Lines changed: 35 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -220,6 +220,41 @@ ingress:
220
220
# hosts:
221
221
# - chart-example.local
222
222
223
+
httpRoute:
224
+
# -- Enable Gateway API HTTPRoute.
225
+
# Gateway API support is in EXPERIMENTAL status. Support depends on your Gateway controller implementation.
226
+
# See the [Gateway API documentation](https://gateway-api.sigs.k8s.io/) for details.
227
+
enabled: false
228
+
229
+
# -- Annotations to be added to the HTTPRoute.
230
+
annotations: {}
231
+
232
+
# -- References to the Gateway(s) that this HTTPRoute is attached to.
233
+
# See the [API reference](https://gateway-api.sigs.k8s.io/reference/spec/#gateway.networking.k8s.io/v1.ParentReference) for details.
234
+
parentRefs: []
235
+
# - name: gateway
236
+
# namespace: gateway-system
237
+
# sectionName: https
238
+
# port: 443
239
+
240
+
# -- Hostnames defines the hostnames for routing.
241
+
# See the [API reference](https://gateway-api.sigs.k8s.io/reference/spec/#gateway.networking.k8s.io/v1.Hostname) for details.
242
+
hostnames:
243
+
- chart-example.local
244
+
245
+
# -- HTTPRoute rules configuration.
246
+
# See the [API reference](https://gateway-api.sigs.k8s.io/reference/spec/#gateway.networking.k8s.io/v1.HTTPRouteRule) for details.
247
+
rules:
248
+
- matches:
249
+
- path:
250
+
type: PathPrefix
251
+
value: /
252
+
# filters:
253
+
# - type: RequestHeaderModifier
254
+
# requestHeaderModifier:
255
+
# add:
256
+
# - name: X-Custom-Header
257
+
# value: custom-value
223
258
serviceMonitor:
224
259
# -- Enable Prometheus ServiceMonitor.
225
260
# See the [documentation](https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/design.md#servicemonitor) and the [API reference](https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/api.md#servicemonitor) for details.
0 commit comments