Skip to content

Commit db9af7a

Browse files
chore(deps): update open-feature/flagd (#457)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent cee89a3 commit db9af7a

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

apis/core/v1alpha1/flagsourceconfiguration_types.go

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

chart/open-feature-operator/README.md

Lines changed: 2 additions & 2 deletions
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.5.0` | Sets the version tag for the injected sidecar container. |
98+
| `sidecarConfiguration.image.tag` | current flagd version: `v0.5.1` | 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` |
@@ -131,7 +131,7 @@ The command removes all the Kubernetes components associated with the chart and
131131
| `flagdProxyConfiguration.port` | `8015` | Sets the port to expose the sync API on |
132132
| `flagdProxyConfiguration.metricsPort` | `8016` | Sets the port to expose the metrics API on |
133133
| `flagdProxyConfiguration.image.repository` | `ghcr.io/open-feature/flagd-proxy` | Sets the image for the flagd-proxy deployment |
134-
| `flagdProxyConfiguration.image.tag` | current flagd-proxy version: `v0.2.0` | Sets the tag for the flagd-proxy deployment |
134+
| `flagdProxyConfiguration.image.tag` | current flagd-proxy version: `v0.2.1` | Sets the tag for the flagd-proxy deployment |
135135
| `flagdProxyConfiguration.debugLogging` | `false` | Controls the addition of the `--debug` flag to the container startup arguments |
136136

137137
## Changelog

chart/open-feature-operator/values.yaml

Lines changed: 2 additions & 2 deletions
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.5.0
11+
tag: v0.5.1
1212
providerArgs: ""
1313
envVarPrefix: "FLAGD"
1414
defaultSyncProvider: kubernetes
@@ -22,7 +22,7 @@ flagdProxyConfiguration:
2222
metricsPort: 8016
2323
image:
2424
repository: "ghcr.io/open-feature/flagd-proxy"
25-
tag: v0.2.0
25+
tag: v0.2.1
2626
debugLogging: false
2727

2828
controllerManager:

controllers/core/flagsourceconfiguration/controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const (
4747
envVarProxyMetricsPort = "FLAGD_PROXY_METRICS_PORT"
4848
envVarProxyDebugLogging = "FLAGD_PROXY_DEBUG_LOGGING"
4949
defaultFlagdProxyImage = "ghcr.io/open-feature/flagd-proxy"
50-
defaultFlagdProxyTag = "v0.2.0" //FLAGD_PROXY_TAG_RENOVATE
50+
defaultFlagdProxyTag = "v0.2.1" //FLAGD_PROXY_TAG_RENOVATE
5151
defaultFlagdProxyPort = 8015
5252
defaultFlagdProxyMetricsPort = 8016
5353
defaultFlagdProxyDebugLogging = false

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.5.0
118+
Image: ghcr.io/open-feature/flagd:v0.5.1
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
@@ -15,4 +15,4 @@ spec:
1515
- name: open-feature-e2e-test
1616
image: nginx:stable-alpine
1717
- name: flagd # this part verifies flagd injection happened
18-
image: ghcr.io/open-feature/flagd:v0.5.0
18+
image: ghcr.io/open-feature/flagd:v0.5.1

0 commit comments

Comments
 (0)