diff --git a/charts/capsule/Chart.yaml b/charts/capsule/Chart.yaml index 583ed8db..849f4b45 100644 --- a/charts/capsule/Chart.yaml +++ b/charts/capsule/Chart.yaml @@ -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.12 +version: 0.0.13 # This is the version number of the application being deployed. # This version number should be incremented each time you make changes to the application. diff --git a/charts/capsule/README.md b/charts/capsule/README.md index e7125d81..cca12393 100644 --- a/charts/capsule/README.md +++ b/charts/capsule/README.md @@ -64,6 +64,7 @@ Parameter | Description | Default `manager.options.forceTenantPrefix` | Boolean, enforces the Tenant owner, during Namespace creation, to name it using the selected Tenant name as prefix, separated by a dash | `false` `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.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` diff --git a/charts/capsule/templates/deployment.yaml b/charts/capsule/templates/deployment.yaml index cffee105..9fb3e72c 100644 --- a/charts/capsule/templates/deployment.yaml +++ b/charts/capsule/templates/deployment.yaml @@ -52,6 +52,7 @@ spec: {{ if .Values.manager.options.forceTenantPrefix }}- --force-tenant-prefix={{ .Values.manager.options.forceTenantPrefix }}{{ end }} {{ 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" }} image: {{ include "capsule.managerFullyQualifiedDockerImage" . }} imagePullPolicy: {{ .Values.manager.image.pullPolicy }} env: diff --git a/charts/capsule/values.yaml b/charts/capsule/values.yaml index 6d176953..89fece0a 100644 --- a/charts/capsule/values.yaml +++ b/charts/capsule/values.yaml @@ -13,6 +13,7 @@ manager: forceTenantPrefix: capsuleUserGroup: protectedNamespaceRegex: + allowIngressHostnameCollision: resources: limits: cpu: 200m