Skip to content

Commit

Permalink
chore(deps): update open-feature/flagd (#480)
Browse files Browse the repository at this point in the history
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Jun 14, 2023
1 parent eb44c61 commit cfeddc8
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 13 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.2"
defaultTag string = "v0.5.4"
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 @@ -98,7 +98,7 @@ The command removes all the Kubernetes components associated with the chart and
| `sidecarConfiguration.metricsPort` | Sets the value of the `XXX_METRICS_PORT` environment variable for the injected sidecar. | `8014` |
| `sidecarConfiguration.socketPath` | Sets the value of the `XXX_SOCKET_PATH` environment variable for the injected sidecar. | `""` |
| `sidecarConfiguration.image.repository` | Sets the image for the injected sidecar. | `ghcr.io/open-feature/flagd` |
| `sidecarConfiguration.image.tag` | Sets the version tag for the injected sidecar. | `v0.5.2` |
| `sidecarConfiguration.image.tag` | Sets the version tag for the injected sidecar. | `v0.5.4` |
| `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.envVarPrefix` | Sets the prefix for all environment variables set in the injected sidecar. | `FLAGD` |
| `sidecarConfiguration.defaultSyncProvider` | 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`. | `kubernetes` |
Expand All @@ -114,7 +114,7 @@ The command removes all the Kubernetes components associated with the chart and
| `flagdProxyConfiguration.port` | Sets the port to expose the sync API on. | `8015` |
| `flagdProxyConfiguration.metricsPort` | Sets the port to expose the metrics API on. | `8016` |
| `flagdProxyConfiguration.image.repository` | Sets the image for the flagd-proxy deployment. | `ghcr.io/open-feature/flagd-proxy` |
| `flagdProxyConfiguration.image.tag` | Sets the tag for the flagd-proxy deployment. | `v0.2.2` |
| `flagdProxyConfiguration.image.tag` | Sets the tag for the flagd-proxy deployment. | `v0.2.4` |
| `flagdProxyConfiguration.debugLogging` | Controls the addition of the `--debug` flag to the container startup arguments. | `false` |

### Operator resource configuration
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 @@ -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.2
tag: v0.5.4
## @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.
Expand All @@ -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.2
tag: v0.2.4
## @param flagdProxyConfiguration.debugLogging Controls the addition of the `--debug` flag to the container startup arguments.
debugLogging: 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 @@ -97,7 +97,7 @@ kubectl describe pod busybox-curl-7bd5767999-spf7v
```
```yaml
flagd:
Image: ghcr.io/open-feature/flagd:v0.5.2
Image: ghcr.io/open-feature/flagd:v0.5.4
Port: 8014/TCP
Host Port: 0/TCP
Args:
Expand Down
3 changes: 3 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,11 @@
},
{
"fileMatch": [
"^test/e2e/kuttl/fsconfig-flagd-proxy-sync/00-install.yaml$",
"^test/e2e/kuttl/fsconfig-flagd-proxy-sync/01-assert.yaml$",
"^test/e2e/kuttl/fsconfig-k8s-sync/00-install.yaml$",
"^test/e2e/kuttl/fsconfig-k8s-sync/01-assert.yaml$",
"^test/e2e/kuttl/fsconfig-file-sync/00-install.yaml$",
"^test/e2e/kuttl/fsconfig-file-sync/01-assert.yaml$"
],
"matchStrings": ["image: ghcr\\.io\/open-feature\/flagd:(?<currentValue>.*?)\\s"],
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/kuttl/fsconfig-file-sync/00-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ spec:
metricsPort: 8080
evaluator: json
defaultSyncProvider: filepath
tag: v0.5.1
tag: v0.5.4
sources:
- source: end-to-end-test
provider: filepath
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/kuttl/fsconfig-file-sync/01-assert.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.1
image: ghcr.io/open-feature/flagd:v0.5.4
2 changes: 1 addition & 1 deletion test/e2e/kuttl/fsconfig-flagd-proxy-sync/00-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ spec:
metricsPort: 8080
evaluator: json
defaultSyncProvider: flagd-proxy
tag: v0.5.1
tag: v0.5.4
sources:
- source: end-to-end-test
provider: flagd-proxy
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/kuttl/fsconfig-flagd-proxy-sync/01-assert.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.1
image: ghcr.io/open-feature/flagd:v0.5.4
2 changes: 1 addition & 1 deletion test/e2e/kuttl/fsconfig-k8s-sync/00-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ spec:
metricsPort: 8080
evaluator: json
defaultSyncProvider: kubernetes
tag: v0.5.1
tag: v0.5.4
sources:
- source: end-to-end-test
provider: kubernetes
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/kuttl/fsconfig-k8s-sync/01-assert.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.1
image: ghcr.io/open-feature/flagd:v0.5.4
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.2
image: ghcr.io/open-feature/flagd:v0.5.4

0 comments on commit cfeddc8

Please sign in to comment.