diff --git a/apis/core/v1alpha1/flagsourceconfiguration_types.go b/apis/core/v1alpha1/flagsourceconfiguration_types.go index f01a51e09..86e3d719e 100644 --- a/apis/core/v1alpha1/flagsourceconfiguration_types.go +++ b/apis/core/v1alpha1/flagsourceconfiguration_types.go @@ -49,7 +49,7 @@ const ( defaultEvaluator string = "json" defaultImage string = "ghcr.io/open-feature/flagd" // renovate: datasource=github-tags depName=open-feature/flagd/flagd - defaultTag string = "v0.5.4" + defaultTag string = "v0.6.1" defaultLogFormat string = "json" defaultProbesEnabled bool = true SyncProviderKubernetes SyncProviderType = "kubernetes" diff --git a/chart/open-feature-operator/values.yaml b/chart/open-feature-operator/values.yaml index 958a2cbcd..a62e97050 100644 --- a/chart/open-feature-operator/values.yaml +++ b/chart/open-feature-operator/values.yaml @@ -16,7 +16,7 @@ sidecarConfiguration: ## @param sidecarConfiguration.image.repository Sets the image for the injected sidecar. repository: "ghcr.io/open-feature/flagd" ## @param sidecarConfiguration.image.tag Sets the version tag for the injected sidecar. - tag: v0.5.4 + tag: v0.6.1 ## @param sidecarConfiguration.providerArgs Used to append arguments to the sidecar startup command. This value is a comma separated string of key values separated by '=', e.g. `key=value,key2=value2` results in the appending of `--sync-provider-args key=value --sync-provider-args key2=value2`. providerArgs: "" ## @param sidecarConfiguration.envVarPrefix Sets the prefix for all environment variables set in the injected sidecar. @@ -42,7 +42,7 @@ flagdProxyConfiguration: ## @param flagdProxyConfiguration.image.repository Sets the image for the flagd-proxy deployment. repository: "ghcr.io/open-feature/flagd-proxy" ## @param flagdProxyConfiguration.image.tag Sets the tag for the flagd-proxy deployment. - tag: v0.2.4 + tag: v0.2.6 ## @param flagdProxyConfiguration.debugLogging Controls the addition of the `--debug` flag to the container startup arguments. debugLogging: false diff --git a/controllers/common/flagd-proxy.go b/controllers/common/flagd-proxy.go index 7f8f8caab..dfdb7cb2b 100644 --- a/controllers/common/flagd-proxy.go +++ b/controllers/common/flagd-proxy.go @@ -22,7 +22,7 @@ const ( FlagdProxyServiceAccountName = "open-feature-operator-flagd-proxy" FlagdProxyServiceName = "flagd-proxy-svc" // renovate: datasource=github-tags depName=open-feature/flagd/flagd-proxy - DefaultFlagdProxyTag = "v0.2.2" + DefaultFlagdProxyTag = "v0.2.6" DefaultFlagdProxyImage = "ghcr.io/open-feature/flagd-proxy" DefaultFlagdProxyPort = 8015 DefaultFlagdProxyMetricsPort = 8016 diff --git a/test/e2e/kuttl/fsconfig-file-sync/00-install.yaml b/test/e2e/kuttl/fsconfig-file-sync/00-install.yaml index c26dc2e84..e0b46108d 100644 --- a/test/e2e/kuttl/fsconfig-file-sync/00-install.yaml +++ b/test/e2e/kuttl/fsconfig-file-sync/00-install.yaml @@ -8,7 +8,7 @@ spec: evaluator: json defaultSyncProvider: filepath # renovate: datasource=github-tags depName=open-feature/flagd/flagd - tag: v0.5.4 + tag: v0.6.1 sources: - source: end-to-end-test provider: filepath diff --git a/test/e2e/kuttl/fsconfig-file-sync/01-assert.yaml b/test/e2e/kuttl/fsconfig-file-sync/01-assert.yaml index b7b0879a5..96051456e 100644 --- a/test/e2e/kuttl/fsconfig-file-sync/01-assert.yaml +++ b/test/e2e/kuttl/fsconfig-file-sync/01-assert.yaml @@ -13,4 +13,4 @@ spec: - name: open-feature-e2e-test image: nginx:stable-alpine - name: flagd # this part verifies flagd injection happened - image: ghcr.io/open-feature/flagd:v0.5.4 + image: ghcr.io/open-feature/flagd:v0.6.1 diff --git a/test/e2e/kuttl/fsconfig-flagd-proxy-sync/00-install.yaml b/test/e2e/kuttl/fsconfig-flagd-proxy-sync/00-install.yaml index c5799e573..5e6c4d916 100644 --- a/test/e2e/kuttl/fsconfig-flagd-proxy-sync/00-install.yaml +++ b/test/e2e/kuttl/fsconfig-flagd-proxy-sync/00-install.yaml @@ -8,7 +8,7 @@ spec: evaluator: json defaultSyncProvider: flagd-proxy # renovate: datasource=github-tags depName=open-feature/flagd/flagd - tag: v0.5.4 + tag: v0.6.1 sources: - source: end-to-end-test provider: flagd-proxy diff --git a/test/e2e/kuttl/fsconfig-flagd-proxy-sync/01-assert.yaml b/test/e2e/kuttl/fsconfig-flagd-proxy-sync/01-assert.yaml index b7b0879a5..96051456e 100644 --- a/test/e2e/kuttl/fsconfig-flagd-proxy-sync/01-assert.yaml +++ b/test/e2e/kuttl/fsconfig-flagd-proxy-sync/01-assert.yaml @@ -13,4 +13,4 @@ spec: - name: open-feature-e2e-test image: nginx:stable-alpine - name: flagd # this part verifies flagd injection happened - image: ghcr.io/open-feature/flagd:v0.5.4 + image: ghcr.io/open-feature/flagd:v0.6.1 diff --git a/test/e2e/kuttl/fsconfig-k8s-sync/00-install.yaml b/test/e2e/kuttl/fsconfig-k8s-sync/00-install.yaml index d38c1dc73..c145003b1 100644 --- a/test/e2e/kuttl/fsconfig-k8s-sync/00-install.yaml +++ b/test/e2e/kuttl/fsconfig-k8s-sync/00-install.yaml @@ -8,7 +8,7 @@ spec: evaluator: json defaultSyncProvider: kubernetes # renovate: datasource=github-tags depName=open-feature/flagd/flagd - tag: v0.5.4 + tag: v0.6.1 sources: - source: end-to-end-test provider: kubernetes diff --git a/test/e2e/kuttl/fsconfig-k8s-sync/01-assert.yaml b/test/e2e/kuttl/fsconfig-k8s-sync/01-assert.yaml index 6894663c6..9036e228d 100644 --- a/test/e2e/kuttl/fsconfig-k8s-sync/01-assert.yaml +++ b/test/e2e/kuttl/fsconfig-k8s-sync/01-assert.yaml @@ -14,4 +14,4 @@ spec: - name: open-feature-e2e-test image: nginx:stable-alpine - name: flagd # this part verifies flagd injection happened - image: ghcr.io/open-feature/flagd:v0.5.4 + image: ghcr.io/open-feature/flagd:v0.6.1 diff --git a/test/e2e/kuttl/inject-flagd/01-assert.yaml b/test/e2e/kuttl/inject-flagd/01-assert.yaml index 3147b017c..952a4089e 100644 --- a/test/e2e/kuttl/inject-flagd/01-assert.yaml +++ b/test/e2e/kuttl/inject-flagd/01-assert.yaml @@ -15,4 +15,4 @@ spec: - name: open-feature-e2e-test image: nginx:stable-alpine - name: flagd # this part verifies flagd injection happened - image: ghcr.io/open-feature/flagd:v0.5.4 + image: ghcr.io/open-feature/flagd:v0.6.1