Skip to content

Commit 6e87cae

Browse files
toddbaertY0sh1dk
authored andcommitted
chore: latest flagd (open-feature#826)
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
1 parent b17f24a commit 6e87cae

10 files changed

Lines changed: 13 additions & 13 deletions

File tree

chart/open-feature-operator/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ The command removes all the Kubernetes components associated with the chart and
123123
| `sidecarConfiguration.managementPort` | Sets the value of the `XXX_MANAGEMENT_PORT` environment variable for the injected sidecar. | `8014` |
124124
| `sidecarConfiguration.socketPath` | Sets the value of the `XXX_SOCKET_PATH` environment variable for the injected sidecar. | `""` |
125125
| `sidecarConfiguration.image.repository` | Sets the image for the injected sidecar. | `ghcr.io/open-feature/flagd` |
126-
| `sidecarConfiguration.image.tag` | Sets the version tag for the injected sidecar. | `v0.15.2` |
126+
| `sidecarConfiguration.image.tag` | Sets the version tag for the injected sidecar. | `v0.15.4` |
127127
| `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`. | `""` |
128128
| `sidecarConfiguration.envVarPrefix` | Sets the prefix for all environment variables set in the injected sidecar. | `FLAGD` |
129129
| `sidecarConfiguration.defaultSyncProvider` | Sets the value of the `XXX_SYNC_PROVIDER` environment variable for the injected sidecar container. There are 4 valid sync providers: `kubernetes`, `grpc`, `file` and `http`. | `kubernetes` |
@@ -171,7 +171,7 @@ The command removes all the Kubernetes components associated with the chart and
171171
| `flagdConfiguration.syncPort` | Sets the port to expose the sync API on. | `8015` |
172172
| `flagdConfiguration.managementPort` | Sets the port to expose the management API on. | `8014` |
173173
| `flagdConfiguration.image.repository` | Sets the image for the flagd deployment. | `ghcr.io/open-feature/flagd` |
174-
| `flagdConfiguration.image.tag` | Sets the tag for the flagd deployment. | `v0.15.2` |
174+
| `flagdConfiguration.image.tag` | Sets the tag for the flagd deployment. | `v0.15.4` |
175175
| `flagdConfiguration.debugLogging` | Controls the addition of the `--debug` flag to the container startup arguments. | `false` |
176176

177177
### Operator resource configuration

chart/open-feature-operator/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ sidecarConfiguration:
3737
## @param sidecarConfiguration.image.repository Sets the image for the injected sidecar.
3838
repository: "ghcr.io/open-feature/flagd"
3939
## @param sidecarConfiguration.image.tag Sets the version tag for the injected sidecar.
40-
tag: v0.15.2
40+
tag: v0.15.4
4141
## @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`.
4242
providerArgs: ""
4343
## @param sidecarConfiguration.envVarPrefix Sets the prefix for all environment variables set in the injected sidecar.
@@ -118,7 +118,7 @@ flagdConfiguration:
118118
## @param flagdConfiguration.image.repository Sets the image for the flagd deployment.
119119
repository: "ghcr.io/open-feature/flagd"
120120
## @param flagdConfiguration.image.tag Sets the tag for the flagd deployment.
121-
tag: v0.15.2
121+
tag: v0.15.4
122122
## @param flagdConfiguration.debugLogging Controls the addition of the `--debug` flag to the container startup arguments.
123123
debugLogging: false
124124

internal/common/types/envconfig.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type EnvConfig struct {
1515

1616
FlagdImage string `envconfig:"FLAGD_IMAGE" default:"ghcr.io/open-feature/flagd"`
1717
// renovate: datasource=github-tags depName=open-feature/flagd/flagd
18-
FlagdTag string `envconfig:"FLAGD_TAG" default:"v0.15.2"`
18+
FlagdTag string `envconfig:"FLAGD_TAG" default:"v0.15.4"`
1919
FlagdPort int `envconfig:"FLAGD_PORT" default:"8013"`
2020
FlagdOFREPPort int `envconfig:"FLAGD_OFREP_PORT" default:"8016"`
2121
FlagdSyncPort int `envconfig:"FLAGD_SYNC_PORT" default:"8015"`
@@ -27,7 +27,7 @@ type EnvConfig struct {
2727
SidecarPort int `envconfig:"SIDECAR_PORT" default:"8013"`
2828
SidecarImage string `envconfig:"SIDECAR_IMAGE" default:"ghcr.io/open-feature/flagd"`
2929
// renovate: datasource=github-tags depName=open-feature/flagd/flagd
30-
SidecarTag string `envconfig:"SIDECAR_TAG" default:"v0.15.2"`
30+
SidecarTag string `envconfig:"SIDECAR_TAG" default:"v0.15.4"`
3131
SidecarSocketPath string `envconfig:"SIDECAR_SOCKET_PATH" default:""`
3232
SidecarEvaluator string `envconfig:"SIDECAR_EVALUATOR" default:"json"`
3333
SidecarProviderArgs string `envconfig:"SIDECAR_PROVIDER_ARGS" default:""`

test/e2e/chainsaw/flagd-with-custom-ports/00-assert.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ spec:
2626
containers:
2727
- name: flagd
2828
# renovate: datasource=github-tags depName=open-feature/flagd/flagd
29-
image: ghcr.io/open-feature/flagd:v0.15.2
29+
image: ghcr.io/open-feature/flagd:v0.15.4
3030
ports:
3131
- containerPort: 8014
3232
name: management

test/e2e/chainsaw/flagd-with-gateway-api/00-assert.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ spec:
2626
containers:
2727
- name: flagd
2828
# renovate: datasource=github-tags depName=open-feature/flagd/flagd
29-
image: ghcr.io/open-feature/flagd:v0.15.2
29+
image: ghcr.io/open-feature/flagd:v0.15.4
3030
ports:
3131
- containerPort: 8014
3232
name: management

test/e2e/chainsaw/flagd-with-ingress-custom-paths/00-assert.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ spec:
2626
containers:
2727
- name: flagd
2828
# renovate: datasource=github-tags depName=open-feature/flagd/flagd
29-
image: ghcr.io/open-feature/flagd:v0.15.2
29+
image: ghcr.io/open-feature/flagd:v0.15.4
3030
ports:
3131
- containerPort: 8014
3232
name: management

test/e2e/chainsaw/flagd-with-ingress-default-paths/00-assert.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ spec:
2626
containers:
2727
- name: flagd
2828
# renovate: datasource=github-tags depName=open-feature/flagd/flagd
29-
image: ghcr.io/open-feature/flagd:v0.15.2
29+
image: ghcr.io/open-feature/flagd:v0.15.4
3030
ports:
3131
- containerPort: 8014
3232
name: management

test/e2e/chainsaw/fsconfig-file-sync/00-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.15.2
16+
image: ghcr.io/open-feature/flagd:v0.15.4

test/e2e/chainsaw/fsconfig-flagd-proxy-sync/00-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.15.2
16+
image: ghcr.io/open-feature/flagd:v0.15.4

test/e2e/chainsaw/fsconfig-k8s-sync/00-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.15.2
17+
image: ghcr.io/open-feature/flagd:v0.15.4

0 commit comments

Comments
 (0)