Skip to content

Commit 74dd65c

Browse files
chore(deps): update open-feature/flagd (#516)
Signed-off-by: Michael Beemer <[email protected]>
1 parent 644144f commit 74dd65c

File tree

13 files changed

+15
-15
lines changed

13 files changed

+15
-15
lines changed

apis/core/v1alpha1/flagsourceconfiguration_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const (
4949
defaultEvaluator string = "json"
5050
defaultImage string = "ghcr.io/open-feature/flagd"
5151
// renovate: datasource=github-tags depName=open-feature/flagd/flagd
52-
defaultTag string = "v0.6.2"
52+
defaultTag string = "v0.6.3"
5353
defaultLogFormat string = "json"
5454
defaultProbesEnabled bool = true
5555
SyncProviderKubernetes SyncProviderType = "kubernetes"

chart/open-feature-operator/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ The command removes all the Kubernetes components associated with the chart and
9999
| `sidecarConfiguration.metricsPort` | Sets the value of the `XXX_METRICS_PORT` environment variable for the injected sidecar. | `8014` |
100100
| `sidecarConfiguration.socketPath` | Sets the value of the `XXX_SOCKET_PATH` environment variable for the injected sidecar. | `""` |
101101
| `sidecarConfiguration.image.repository` | Sets the image for the injected sidecar. | `ghcr.io/open-feature/flagd` |
102-
| `sidecarConfiguration.image.tag` | Sets the version tag for the injected sidecar. | `v0.6.2` |
102+
| `sidecarConfiguration.image.tag` | Sets the version tag for the injected sidecar. | `v0.6.3` |
103103
| `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`. | `""` |
104104
| `sidecarConfiguration.envVarPrefix` | Sets the prefix for all environment variables set in the injected sidecar. | `FLAGD` |
105105
| `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` |
@@ -117,7 +117,7 @@ The command removes all the Kubernetes components associated with the chart and
117117
| `flagdProxyConfiguration.port` | Sets the port to expose the sync API on. | `8015` |
118118
| `flagdProxyConfiguration.metricsPort` | Sets the port to expose the metrics API on. | `8016` |
119119
| `flagdProxyConfiguration.image.repository` | Sets the image for the flagd-proxy deployment. | `ghcr.io/open-feature/flagd-proxy` |
120-
| `flagdProxyConfiguration.image.tag` | Sets the tag for the flagd-proxy deployment. | `v0.2.7` |
120+
| `flagdProxyConfiguration.image.tag` | Sets the tag for the flagd-proxy deployment. | `v0.2.8` |
121121
| `flagdProxyConfiguration.debugLogging` | Controls the addition of the `--debug` flag to the container startup arguments. | `false` |
122122

123123
### Operator resource configuration

chart/open-feature-operator/values.yaml

Lines changed: 2 additions & 2 deletions
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.6.2
19+
tag: v0.6.3
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.2.7
49+
tag: v0.2.8
5050
## @param flagdProxyConfiguration.debugLogging Controls the addition of the `--debug` flag to the container startup arguments.
5151
debugLogging: false
5252

controllers/common/flagd-proxy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const (
2222
FlagdProxyServiceAccountName = "open-feature-operator-flagd-proxy"
2323
FlagdProxyServiceName = "flagd-proxy-svc"
2424
// renovate: datasource=github-tags depName=open-feature/flagd/flagd-proxy
25-
DefaultFlagdProxyTag = "v0.2.7"
25+
DefaultFlagdProxyTag = "v0.2.8"
2626
DefaultFlagdProxyImage = "ghcr.io/open-feature/flagd-proxy"
2727
DefaultFlagdProxyPort = 8015
2828
DefaultFlagdProxyMetricsPort = 8016

test/e2e/kuttl/fsconfig-file-sync/00-install.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ spec:
88
evaluator: json
99
defaultSyncProvider: filepath
1010
# renovate: datasource=github-tags depName=open-feature/flagd/flagd
11-
tag: v0.6.2
11+
tag: v0.6.3
1212
sources:
1313
- source: end-to-end-test
1414
provider: filepath

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

Lines changed: 1 addition & 1 deletion
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.6.2
16+
image: ghcr.io/open-feature/flagd:v0.6.3

test/e2e/kuttl/fsconfig-flagd-proxy-sync/00-install.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ spec:
88
evaluator: json
99
defaultSyncProvider: flagd-proxy
1010
# renovate: datasource=github-tags depName=open-feature/flagd/flagd
11-
tag: v0.6.2
11+
tag: v0.6.3
1212
sources:
1313
- source: end-to-end-test
1414
provider: flagd-proxy

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

Lines changed: 1 addition & 1 deletion
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.6.2
16+
image: ghcr.io/open-feature/flagd:v0.6.3

test/e2e/kuttl/fsconfig-k8s-sync/00-install.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ spec:
88
evaluator: json
99
defaultSyncProvider: kubernetes
1010
# renovate: datasource=github-tags depName=open-feature/flagd/flagd
11-
tag: v0.6.2
11+
tag: v0.6.3
1212
sources:
1313
- source: end-to-end-test
1414
provider: kubernetes

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

Lines changed: 1 addition & 1 deletion
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.6.2
17+
image: ghcr.io/open-feature/flagd:v0.6.3

0 commit comments

Comments
 (0)