Skip to content

Commit 0e03f47

Browse files
chore(deps): update open-feature/flagd (#600)
Signed-off-by: Todd Baert <todd.baert@dynatrace.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Todd Baert <todd.baert@dynatrace.com>
1 parent e4476e2 commit 0e03f47

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

chart/open-feature-operator/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ The command removes all the Kubernetes components associated with the chart and
105105
| `sidecarConfiguration.managementPort` | Sets the value of the `XXX_MANAGEMENT_PORT` environment variable for the injected sidecar. | `8014` |
106106
| `sidecarConfiguration.socketPath` | Sets the value of the `XXX_SOCKET_PATH` environment variable for the injected sidecar. | `""` |
107107
| `sidecarConfiguration.image.repository` | Sets the image for the injected sidecar. | `ghcr.io/open-feature/flagd` |
108-
| `sidecarConfiguration.image.tag` | Sets the version tag for the injected sidecar. | `v0.7.2` |
108+
| `sidecarConfiguration.image.tag` | Sets the version tag for the injected sidecar. | `v0.9.0` |
109109
| `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`. | `""` |
110110
| `sidecarConfiguration.envVarPrefix` | Sets the prefix for all environment variables set in the injected sidecar. | `FLAGD` |
111111
| `sidecarConfiguration.defaultSyncProvider` | Sets the value of the `XXX_SYNC_PROVIDER` environment variable for the injected sidecar container. There are 4 valid sync providers: `kubernetes`, `grpc`, `file` and `http`. | `kubernetes` |
@@ -123,7 +123,7 @@ The command removes all the Kubernetes components associated with the chart and
123123
| `flagdProxyConfiguration.port` | Sets the port to expose the sync API on. | `8015` |
124124
| `flagdProxyConfiguration.managementPort` | Sets the port to expose the management API on. | `8016` |
125125
| `flagdProxyConfiguration.image.repository` | Sets the image for the flagd-proxy deployment. | `ghcr.io/open-feature/flagd-proxy` |
126-
| `flagdProxyConfiguration.image.tag` | Sets the tag for the flagd-proxy deployment. | `v0.3.2` |
126+
| `flagdProxyConfiguration.image.tag` | Sets the tag for the flagd-proxy deployment. | `v0.5.0` |
127127
| `flagdProxyConfiguration.debugLogging` | Controls the addition of the `--debug` flag to the container startup arguments. | `false` |
128128

129129
### Operator resource configuration

chart/open-feature-operator/values.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ sidecarConfiguration:
1616
## @param sidecarConfiguration.image.repository Sets the image for the injected sidecar.
1717
repository: "ghcr.io/open-feature/flagd"
1818
## @param sidecarConfiguration.image.tag Sets the version tag for the injected sidecar.
19-
tag: v0.7.2
19+
tag: v0.9.0
2020
## @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`.
2121
providerArgs: ""
2222
## @param sidecarConfiguration.envVarPrefix Sets the prefix for all environment variables set in the injected sidecar.
@@ -46,7 +46,7 @@ flagdProxyConfiguration:
4646
## @param flagdProxyConfiguration.image.repository Sets the image for the flagd-proxy deployment.
4747
repository: "ghcr.io/open-feature/flagd-proxy"
4848
## @param flagdProxyConfiguration.image.tag Sets the tag for the flagd-proxy deployment.
49-
tag: v0.3.2
49+
tag: v0.5.0
5050
## @param flagdProxyConfiguration.debugLogging Controls the addition of the `--debug` flag to the container startup arguments.
5151
debugLogging: false
5252

common/types/envconfig.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ type EnvConfig struct {
44
PodNamespace string `envconfig:"POD_NAMESPACE" default:"open-feature-operator-system"`
55
FlagdProxyImage string `envconfig:"FLAGD_PROXY_IMAGE" default:"ghcr.io/open-feature/flagd-proxy"`
66
// renovate: datasource=github-tags depName=open-feature/flagd/flagd-proxy
7-
FlagdProxyTag string `envconfig:"FLAGD_PROXY_TAG" default:"v0.3.2"`
7+
FlagdProxyTag string `envconfig:"FLAGD_PROXY_TAG" default:"v0.5.0"`
88
FlagdProxyPort int `envconfig:"FLAGD_PROXY_PORT" default:"8015"`
99
FlagdProxyManagementPort int `envconfig:"FLAGD_PROXY_MANAGEMENT_PORT" default:"8016"`
1010
FlagdProxyDebugLogging bool `envconfig:"FLAGD_PROXY_DEBUG_LOGGING" default:"false"`
@@ -14,7 +14,7 @@ type EnvConfig struct {
1414
SidecarPort int `envconfig:"SIDECAR_PORT" default:"8013"`
1515
SidecarImage string `envconfig:"SIDECAR_IMAGE" default:"ghcr.io/open-feature/flagd"`
1616
// renovate: datasource=github-tags depName=open-feature/flagd/flagd
17-
SidecarTag string `envconfig:"SIDECAR_TAG" default:"v0.7.2"`
17+
SidecarTag string `envconfig:"SIDECAR_TAG" default:"v0.9.0"`
1818
SidecarSocketPath string `envconfig:"SIDECAR_SOCKET_PATH" default:""`
1919
SidecarEvaluator string `envconfig:"SIDECAR_EVALUATOR" default:"json"`
2020
SidecarProviderArgs string `envconfig:"SIDECAR_PROVIDER_ARGS" default:""`

controllers/core/featureflagsource/controller.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ type FeatureFlagSourceReconciler struct {
4545
}
4646

4747
// renovate: datasource=github-tags depName=open-feature/flagd/flagd-proxy
48-
const flagdProxyTag = "v0.3.2"
48+
const flagdProxyTag = "v0.5.0"
4949

5050
//+kubebuilder:rbac:groups=core.openfeature.dev,resources=featureflagsources,verbs=get;list;watch;create;update;patch;delete
5151
//+kubebuilder:rbac:groups=core.openfeature.dev,resources=featureflagsources/status,verbs=get;update;patch

test/e2e/kuttl/fsconfig-file-sync/01-assert.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ spec:
1313
- name: open-feature-e2e-test
1414
image: nginx:stable-alpine
1515
- name: flagd # this part verifies flagd injection happened
16-
image: ghcr.io/open-feature/flagd:v0.7.2
16+
image: ghcr.io/open-feature/flagd:v0.9.0

test/e2e/kuttl/fsconfig-flagd-proxy-sync/01-assert.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ spec:
1313
- name: open-feature-e2e-test
1414
image: nginx:stable-alpine
1515
- name: flagd # this part verifies flagd injection happened
16-
image: ghcr.io/open-feature/flagd:v0.7.2
16+
image: ghcr.io/open-feature/flagd:v0.9.0

test/e2e/kuttl/fsconfig-k8s-sync/01-assert.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ spec:
1414
- name: open-feature-e2e-test
1515
image: nginx:stable-alpine
1616
- name: flagd # this part verifies flagd injection happened
17-
image: ghcr.io/open-feature/flagd:v0.7.2
17+
image: ghcr.io/open-feature/flagd:v0.9.0

0 commit comments

Comments
 (0)