Skip to content

Commit 6846aa2

Browse files
chore(deps): update open-feature/flagd to v0.5.0 (#422)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent de4ac14 commit 6846aa2

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

apis/core/v1alpha1/flagsourceconfiguration_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const (
4747
defaultSocketPath string = ""
4848
defaultEvaluator string = "json"
4949
defaultImage string = "ghcr.io/open-feature/flagd"
50-
defaultTag string = "v0.4.5"
50+
defaultTag string = "v0.5.0"
5151
defaultLogFormat string = "json"
5252
defaultProbesEnabled bool = true
5353
SyncProviderKubernetes SyncProviderType = "kubernetes"

chart/open-feature-operator/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ The command removes all the Kubernetes components associated with the chart and
9595
| `sidecarConfiguration.metricsPort` | 8014 | Sets the value of the `XXX_METRICS_PORT` environment variable for the injected sidecar container. |
9696
| `sidecarConfiguration.socketPath` | `""` | Sets the value of the `XXX_SOCKET_PATH` environment variable for the injected sidecar container. |
9797
| `sidecarConfiguration.image.repository` | `ghcr.io/open-feature/flagd` | Sets the image for the injected sidecar container. |
98-
| `sidecarConfiguration.image.tag` | current flagd version: `v0.4.5` | Sets the version tag for the injected sidecar container. |
98+
| `sidecarConfiguration.image.tag` | current flagd version: `v0.5.0` | Sets the version tag for the injected sidecar container. |
9999
| `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` |
100100
| `sidecarConfiguration.defaultSyncProvider` | `kubernetes` | Sets the value of the `XXX_SYNC_PROVIDER` environment variable for the injected sidecar container. There are 3 valid sync providers: `kubernetes`, `filepath` and `http` |
101101
| `sidecarConfiguration.logFormat` | `json` | Sets the value of the `XXX_LOG_FORMAT` environment variable for the injected sidecar container. There are 2 valid log formats: `json` and `console` |

chart/open-feature-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ sidecarConfiguration:
88
image:
99
# these fields must remain in the same order, renovate uses a regex to update the tag value
1010
repository: "ghcr.io/open-feature/flagd"
11-
tag: v0.4.5
11+
tag: v0.5.0
1212
providerArgs: ""
1313
envVarPrefix: "FLAGD"
1414
defaultSyncProvider: kubernetes

docs/getting_started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ kubectl describe pod busybox-curl-7bd5767999-spf7v
115115
```
116116
```yaml
117117
flagd:
118-
Image: ghcr.io/open-feature/flagd:v0.4.5
118+
Image: ghcr.io/open-feature/flagd:v0.5.0
119119
Port: 8014/TCP
120120
Host Port: 0/TCP
121121
Args:

test/e2e/kuttl/inject-flagd/01-assert.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ status:
1212
spec:
1313
containers:
1414
- name: flagd # this part verifies flagd injection happened
15-
image: ghcr.io/open-feature/flagd:v0.4.5
15+
image: ghcr.io/open-feature/flagd:v0.5.0
1616
- name: open-feature-e2e-test
1717
image: nginx:stable-alpine

0 commit comments

Comments
 (0)