build(helm): support for --allow-tenant-ingress-hostnames-collision flag

This commit is contained in:
Dario Tranchitella
2021-03-06 16:58:44 +01:00
parent bdce4a7b4f
commit 87a360bfaf
4 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ sources:
# 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.
version: 0.0.16
version: 0.0.17
# This is the version number of the application being deployed.
# This version number should be incremented each time you make changes to the application.
+1
View File
@@ -65,6 +65,7 @@ Parameter | Description | Default
`manager.options.capsuleUserGroup` | Override the Capsule user group | `capsule.clastix.io`
`manager.options.protectedNamespaceRegex` | If specified, disallows creation of namespaces matching the passed regexp | `null`
`manager.options.allowIngressHostnameCollision` | Allow the Ingress hostname collision at Ingress resource level across all the Tenants | `true`
`manager.options.allowTenantIngressHostnamesCollision` | Skip the validation check at Tenant level for colliding Ingress hostnames | `false`
`manager.image.repository` | Set the image repository of the controller. | `quay.io/clastix/capsule`
`manager.image.tag` | Overrides the image tag whose default is the chart. `appVersion` | `null`
`manager.image.pullPolicy` | Set the image pull policy. | `IfNotPresent`
+1
View File
@@ -53,6 +53,7 @@ spec:
{{ if .Values.manager.options.capsuleUserGroup }}- --capsule-user-group={{ .Values.manager.options.capsuleUserGroup }}{{ end }}
{{ if .Values.manager.options.protectedNamespaceRegex }}- --protected-namespace-regex={{ .Values.manager.options.protectedNamespaceRegex }}{{ end }}
- --allow-ingress-hostname-collision={{ .Values.manager.options.allowIngressHostnameCollision | default "true" }}
- --allow-tenant-ingress-hostnames-collision={{ .Values.manager.allowTenantIngressHostnamesCollision | default "false" }}
image: {{ include "capsule.managerFullyQualifiedDockerImage" . }}
imagePullPolicy: {{ .Values.manager.image.pullPolicy }}
env:
+2
View File
@@ -14,6 +14,7 @@ manager:
capsuleUserGroup:
protectedNamespaceRegex:
allowIngressHostnameCollision:
allowTenantIngressHostnamesCollision:
livenessProbe:
httpGet:
path: /healthz
@@ -22,6 +23,7 @@ manager:
httpGet:
path: /readyz
port: 10080
resources:
limits:
cpu: 200m