diff --git a/charts/lagoon-build-deploy/Chart.yaml b/charts/lagoon-build-deploy/Chart.yaml index 395d734b..d4262503 100644 --- a/charts/lagoon-build-deploy/Chart.yaml +++ b/charts/lagoon-build-deploy/Chart.yaml @@ -16,11 +16,13 @@ kubeVersion: ">= 1.21.0-0" type: application -version: 0.25.1 +version: 0.25.2 -appVersion: v0.15.1 +appVersion: v0.15.2 annotations: artifacthub.io/changes: | - kind: changed - description: update remote-controller appVersion to v0.15.1 + description: update remote-controller appVersion to v0.15.2 + - kind: changed + description: added flag support for enabling k8up v2 support diff --git a/charts/lagoon-build-deploy/templates/deployment.yaml b/charts/lagoon-build-deploy/templates/deployment.yaml index 67cad38b..75d678e6 100644 --- a/charts/lagoon-build-deploy/templates/deployment.yaml +++ b/charts/lagoon-build-deploy/templates/deployment.yaml @@ -119,6 +119,9 @@ spec: {{- with .Values.lagoonFeatureFlagBackupWeeklyRandom }} - "--lagoon-feature-flag-backup-weekly-random={{ . }}" {{- end }} + {{- with .Values.lagoonFeatureFlagSupportK8upV2 }} + - "--lagoon-feature-flag-support-k8upv2={{ . }}" + {{- end }} {{- with .Values.lagoonBackupDefaultSchedule }} - "--backup-default-schedule={{ . }}" {{- end }} diff --git a/charts/lagoon-build-deploy/values.yaml b/charts/lagoon-build-deploy/values.yaml index 684974f4..ed1d2871 100644 --- a/charts/lagoon-build-deploy/values.yaml +++ b/charts/lagoon-build-deploy/values.yaml @@ -48,6 +48,7 @@ namespacePrefix: "" # lagoonFeatureFlagDefaultInsights: disabled # lagoonFeatureFlagForceRWX2RWO: disabled # lagoonFeatureFlagDefaultRWX2RWO: disabled +# lagoonFeatureFlagSupportK8upV2: false # It is also possible to define feature flags using `extraEnvs` by defining them like so # this method is useful for enabling features on the fly, ones that might not have built in support