Skip to content

Commit 21e750d

Browse files
chore(deps): update open-feature/flagd
1 parent 90d373f commit 21e750d

10 files changed

Lines changed: 14 additions & 14 deletions

File tree

chart/open-feature-operator/values.yaml

Lines changed: 3 additions & 3 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.4
40+
tag: v0.15.5
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.
@@ -100,7 +100,7 @@ flagdProxyConfiguration:
100100
## @param flagdProxyConfiguration.image.repository Sets the image for the flagd-proxy deployment.
101101
repository: "ghcr.io/open-feature/flagd-proxy"
102102
## @param flagdProxyConfiguration.image.tag Sets the tag for the flagd-proxy deployment.
103-
tag: v0.9.4
103+
tag: v0.9.5
104104
## @param flagdProxyConfiguration.debugLogging Controls the addition of the `--debug` flag to the container startup arguments.
105105
debugLogging: false
106106

@@ -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.4
121+
tag: v0.15.5
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ type EnvConfig struct {
66
FlagsValidationEnabled bool `envconfig:"FLAGS_VALIDATION_ENABLED" default:"true"`
77
FlagdProxyReplicaCount int `envconfig:"FLAGD_PROXY_REPLICA_COUNT" default:"1"`
88
// renovate: datasource=github-tags depName=open-feature/flagd/flagd-proxy
9-
FlagdProxyTag string `envconfig:"FLAGD_PROXY_TAG" default:"v0.9.4"`
9+
FlagdProxyTag string `envconfig:"FLAGD_PROXY_TAG" default:"v0.9.5"`
1010
FlagdProxyPort int `envconfig:"FLAGD_PROXY_PORT" default:"8015"`
1111
FlagdProxyManagementPort int `envconfig:"FLAGD_PROXY_MANAGEMENT_PORT" default:"8016"`
1212
FlagdProxyDebugLogging bool `envconfig:"FLAGD_PROXY_DEBUG_LOGGING" default:"false"`
@@ -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.4"`
18+
FlagdTag string `envconfig:"FLAGD_TAG" default:"v0.15.5"`
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.4"`
30+
SidecarTag string `envconfig:"SIDECAR_TAG" default:"v0.15.5"`
3131
SidecarSocketPath string `envconfig:"SIDECAR_SOCKET_PATH" default:""`
3232
SidecarEvaluator string `envconfig:"SIDECAR_EVALUATOR" default:"json"`
3333
SidecarProviderArgs string `envconfig:"SIDECAR_PROVIDER_ARGS" default:""`

internal/controller/core/featureflagsource/controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ type FeatureFlagSourceReconciler struct {
5050
}
5151

5252
// renovate: datasource=github-tags depName=open-feature/flagd/flagd-proxy
53-
const flagdProxyTag = "v0.9.4"
53+
const flagdProxyTag = "v0.9.5"
5454

5555
//+kubebuilder:rbac:groups=core.openfeature.dev,resources=featureflagsources,verbs=get;list;watch;create;update;patch;delete
5656
//+kubebuilder:rbac:groups=core.openfeature.dev,resources=featureflagsources/status,verbs=get;update;patch

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.4
29+
image: ghcr.io/open-feature/flagd:v0.15.5
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.4
29+
image: ghcr.io/open-feature/flagd:v0.15.5
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
@@ -25,7 +25,7 @@ spec:
2525
containers:
2626
- name: flagd
2727
# renovate: datasource=github-tags depName=open-feature/flagd/flagd
28-
image: ghcr.io/open-feature/flagd:v0.15.4
28+
image: ghcr.io/open-feature/flagd:v0.15.5
2929
ports:
3030
- containerPort: 8014
3131
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
@@ -25,7 +25,7 @@ spec:
2525
containers:
2626
- name: flagd
2727
# renovate: datasource=github-tags depName=open-feature/flagd/flagd
28-
image: ghcr.io/open-feature/flagd:v0.15.4
28+
image: ghcr.io/open-feature/flagd:v0.15.5
2929
ports:
3030
- containerPort: 8014
3131
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
@@ -14,5 +14,5 @@ spec:
1414
image: nginx:stable-alpine
1515
initContainers:
1616
- name: flagd # this part verifies flagd injection happened
17-
image: ghcr.io/open-feature/flagd:v0.15.4
17+
image: ghcr.io/open-feature/flagd:v0.15.5
1818
restartPolicy: Always

test/e2e/chainsaw/fsconfig-flagd-proxy-sync/00-assert.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ spec:
1414
image: nginx:stable-alpine
1515
initContainers:
1616
- name: flagd # this part verifies flagd injection happened
17-
image: ghcr.io/open-feature/flagd:v0.15.4
17+
image: ghcr.io/open-feature/flagd:v0.15.5
1818
restartPolicy: Always

test/e2e/chainsaw/fsconfig-k8s-sync/00-assert.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ spec:
1515
image: nginx:stable-alpine
1616
initContainers:
1717
- name: flagd # this part verifies flagd injection happened
18-
image: ghcr.io/open-feature/flagd:v0.15.4
18+
image: ghcr.io/open-feature/flagd:v0.15.5
1919
restartPolicy: Always

0 commit comments

Comments
 (0)