Skip to content

Commit

Permalink
chore(deps): update open-feature/flagd (#457)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Apr 12, 2023
1 parent cee89a3 commit db9af7a
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion apis/core/v1alpha1/flagsourceconfiguration_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const (
defaultSocketPath string = ""
defaultEvaluator string = "json"
defaultImage string = "ghcr.io/open-feature/flagd"
defaultTag string = "v0.5.0"
defaultTag string = "v0.5.1"
defaultLogFormat string = "json"
defaultProbesEnabled bool = true
SyncProviderKubernetes SyncProviderType = "kubernetes"
Expand Down
4 changes: 2 additions & 2 deletions chart/open-feature-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ The command removes all the Kubernetes components associated with the chart and
| `sidecarConfiguration.metricsPort` | 8014 | Sets the value of the `XXX_METRICS_PORT` environment variable for the injected sidecar container. |
| `sidecarConfiguration.socketPath` | `""` | Sets the value of the `XXX_SOCKET_PATH` environment variable for the injected sidecar container. |
| `sidecarConfiguration.image.repository` | `ghcr.io/open-feature/flagd` | Sets the image for the injected sidecar container. |
| `sidecarConfiguration.image.tag` | current flagd version: `v0.5.0` | Sets the version tag for the injected sidecar container. |
| `sidecarConfiguration.image.tag` | current flagd version: `v0.5.1` | Sets the version tag for the injected sidecar container. |
| `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` |
| `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` |
| `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` |
Expand Down Expand Up @@ -131,7 +131,7 @@ The command removes all the Kubernetes components associated with the chart and
| `flagdProxyConfiguration.port` | `8015` | Sets the port to expose the sync API on |
| `flagdProxyConfiguration.metricsPort` | `8016` | Sets the port to expose the metrics API on |
| `flagdProxyConfiguration.image.repository` | `ghcr.io/open-feature/flagd-proxy` | Sets the image for the flagd-proxy deployment |
| `flagdProxyConfiguration.image.tag` | current flagd-proxy version: `v0.2.0` | Sets the tag for the flagd-proxy deployment |
| `flagdProxyConfiguration.image.tag` | current flagd-proxy version: `v0.2.1` | Sets the tag for the flagd-proxy deployment |
| `flagdProxyConfiguration.debugLogging` | `false` | Controls the addition of the `--debug` flag to the container startup arguments |

## Changelog
Expand Down
4 changes: 2 additions & 2 deletions chart/open-feature-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ sidecarConfiguration:
image:
# these fields must remain in the same order, renovate uses a regex to update the tag value
repository: "ghcr.io/open-feature/flagd"
tag: v0.5.0
tag: v0.5.1
providerArgs: ""
envVarPrefix: "FLAGD"
defaultSyncProvider: kubernetes
Expand All @@ -22,7 +22,7 @@ flagdProxyConfiguration:
metricsPort: 8016
image:
repository: "ghcr.io/open-feature/flagd-proxy"
tag: v0.2.0
tag: v0.2.1
debugLogging: false

controllerManager:
Expand Down
2 changes: 1 addition & 1 deletion controllers/core/flagsourceconfiguration/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const (
envVarProxyMetricsPort = "FLAGD_PROXY_METRICS_PORT"
envVarProxyDebugLogging = "FLAGD_PROXY_DEBUG_LOGGING"
defaultFlagdProxyImage = "ghcr.io/open-feature/flagd-proxy"
defaultFlagdProxyTag = "v0.2.0" //FLAGD_PROXY_TAG_RENOVATE
defaultFlagdProxyTag = "v0.2.1" //FLAGD_PROXY_TAG_RENOVATE
defaultFlagdProxyPort = 8015
defaultFlagdProxyMetricsPort = 8016
defaultFlagdProxyDebugLogging = false
Expand Down
2 changes: 1 addition & 1 deletion docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ kubectl describe pod busybox-curl-7bd5767999-spf7v
```
```yaml
flagd:
Image: ghcr.io/open-feature/flagd:v0.5.0
Image: ghcr.io/open-feature/flagd:v0.5.1
Port: 8014/TCP
Host Port: 0/TCP
Args:
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/kuttl/inject-flagd/01-assert.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.0
image: ghcr.io/open-feature/flagd:v0.5.1

0 comments on commit db9af7a

Please sign in to comment.