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
| `controlplane.httpRoute.annotations` | Additional annotations for the HTTPRoute resource | `{}` |
676
+
| `controlplane.httpRoute.tls` | Indicate if tls is active for this route | `false` |
676
677
| `controlplane.httpRoute.labels` | Additional labels for the HTTPRoute resource | `{}` |
677
678
| `controlplane.httpRoute.parentRefs` | Gateways the HTTPRoute is attached to. If unspecified, it'll be attached to Gateway named 'gateway' in the same namespace. | `[]` |
678
679
| `controlplane.httpRoute.hostnames` | List of hostnames matching HTTP header | `[]` |
@@ -856,6 +857,7 @@ Once done, you can access with [two predefined users](https://github.com/chainlo
| `cas.ingressAPI.extraRules` | Additional rules to be covered with this ingress record | `[]` |
858
859
| `cas.httpRoute.enabled` | Enable HTTPRoute generation for CAS | `false` |
860
+
| `cas.httpRoute.tls` | Indicate if tls is active for this route | `false` |
859
861
| `cas.httpRoute.annotations` | Additional annotations for the HTTPRoute resource | `{}` |
860
862
| `cas.httpRoute.labels` | Additional labels for the HTTPRoute resource | `{}` |
861
863
| `cas.httpRoute.parentRefs` | Gateways the HTTPRoute is attached to. If unspecified, it'll be attached to Gateway named 'gateway' in the same namespace. | `[]` |
@@ -944,22 +946,31 @@ Once done, you can access with [two predefined users](https://github.com/chainlo
| `postgresql.enabled` | Switch to enable or disable the PostgreSQL helm chart | `true` |
950
-
| `postgresql.auth.enablePostgresUser` | Assign a password to the "postgres" admin user. Otherwise, remote access will be blocked for this user | `false` |
951
-
| `postgresql.auth.username` | Name for a custom user to create | `chainloop` |
952
-
| `postgresql.auth.password` | Password for the custom user to create | `chainlooppwd` |
953
-
| `postgresql.auth.database` | Name for a custom database to create | `chainloop-cp` |
954
-
| `postgresql.auth.existingSecret` | Name of existing secret to use for PostgreSQL credentials | `""` |
| `postgresql.enabled` | Switch to enable or disable the PostgreSQL helm chart | `true` |
952
+
| `postgresql.auth.enablePostgresUser` | Assign a password to the "postgres" admin user. Otherwise, remote access will be blocked for this user | `false` |
953
+
| `postgresql.auth.username` | Name for a custom user to create | `chainloop` |
954
+
| `postgresql.auth.password` | Password for the custom user to create | `chainlooppwd` |
955
+
| `postgresql.auth.database` | Name for a custom database to create | `chainloop-cp` |
956
+
| `postgresql.auth.existingSecret` | Name of existing secret to use for PostgreSQL credentials | `""` |
| `dex.dex.httpRoute.hostnames` | List of hostnames to match for this route WARNING: Please use only one domain | `["dex.[domain]"]` |
973
+
| `dex.dex.httpRoute.parentRefs` | Gateways the HTTPRoute is attached to. If unspecified, it'll be attached to Gateway named 'gateway' in the same namespace. | `[]` |
Copy file name to clipboardExpand all lines: deployment/chainloop/values.yaml
+36Lines changed: 36 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -610,6 +610,8 @@ controlplane:
610
610
enabled: false
611
611
## @param controlplane.httpRoute.annotations Additional annotations for the HTTPRoute resource
612
612
##
613
+
## @param controlplane.httpRoute.tls Indicate if tls is active for this route
614
+
tls: false
613
615
annotations: {}
614
616
## @param controlplane.httpRoute.labels Additional labels for the HTTPRoute resource
615
617
##
@@ -1410,6 +1412,8 @@ cas:
1410
1412
## @param cas.httpRoute.enabled Enable HTTPRoute generation for CAS
1411
1413
##
1412
1414
enabled: false
1415
+
## @param cas.httpRoute.tls Indicate if tls is active for this route
1416
+
tls: false
1413
1417
## @param cas.httpRoute.annotations Additional annotations for the HTTPRoute resource
1414
1418
##
1415
1419
annotations: {}
@@ -1892,3 +1896,35 @@ vault:
1892
1896
- name: vault-init
1893
1897
mountPath: /vault-init.sh
1894
1898
subPath: vault-init.sh
1899
+
1900
+
## Dex chart configuration
1901
+
## @param dex.dex.redirectURL Control Plane URL where Dex will redirect after a successful login
1902
+
## @extra dex.dex.ingress Configuration for the Dex ingress record
1903
+
## @param dex.dex.ingress.enabled Enable ingress record generation for Dex
1904
+
## @param dex.dex.ingress.tls Enable TLS for the Dex ingress record
1905
+
## @param dex.dex.ingress.hostname Hostname for the Dex ingress record
1906
+
## @param dex.dex.ingress.ingressClassName IngressClass that will be be used to implement the Dex Ingress (Kubernetes 1.18+)
1907
+
## @param dex.dex.httpRoute.enabled Enable HTTPRoute generation for controlplane
1908
+
## @param dex.dex.httpRoute.hostnames List of hostnames to match for this route WARNING: Please use only one domain
1909
+
## @param dex.dex.httpRoute.parentRefs Gateways the HTTPRoute is attached to. If unspecified, it'll be attached to Gateway named 'gateway' in the same namespace.
1910
+
1911
+
## Used only if .Values.development is true
1912
+
## Yes, dex.dex, since we are overriding the dex section in the dex subchart
1913
+
dex:
1914
+
dex:
1915
+
# Point to the [controlplane http ingress]/auth/callback
0 commit comments