Skip to content

Commit 0d331a9

Browse files
chore(deps): update open-feature/flagd (#689)
Signed-off-by: Todd Baert <todd.baert@dynatrace.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Todd Baert <todd.baert@dynatrace.com>
1 parent 1d2713d commit 0d331a9

File tree

11 files changed

+18
-16
lines changed

11 files changed

+18
-16
lines changed

apis/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/open-feature/open-feature-operator/apis
33
go 1.21
44

55
require (
6-
github.com/open-feature/flagd-schemas v0.2.9-0.20240527214546-61523e5efe3e
6+
github.com/open-feature/flagd-schemas v0.2.9-0.20240708163558-2aa89b314322
77
github.com/stretchr/testify v1.9.0
88
github.com/xeipuuv/gojsonschema v1.2.0
99
k8s.io/api v0.28.10

apis/go.sum

+2
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ github.com/open-feature/flagd-schemas v0.2.9-0.20240408192555-ea4f119d2bd7 h1:oP
8181
github.com/open-feature/flagd-schemas v0.2.9-0.20240408192555-ea4f119d2bd7/go.mod h1:WKtwo1eW9/K6D+4HfgTXWBqCDzpvMhDa5eRxW7R5B2U=
8282
github.com/open-feature/flagd-schemas v0.2.9-0.20240527214546-61523e5efe3e h1:j1xFE8kIrFXf4fZtJUsR457rEG4mxsq2YCVyy92I0HU=
8383
github.com/open-feature/flagd-schemas v0.2.9-0.20240527214546-61523e5efe3e/go.mod h1:WKtwo1eW9/K6D+4HfgTXWBqCDzpvMhDa5eRxW7R5B2U=
84+
github.com/open-feature/flagd-schemas v0.2.9-0.20240708163558-2aa89b314322 h1:5zbNHqcZAc9jlhSrC0onuVL2RPpvYcDaNvW2wOZBfUY=
85+
github.com/open-feature/flagd-schemas v0.2.9-0.20240708163558-2aa89b314322/go.mod h1:WKtwo1eW9/K6D+4HfgTXWBqCDzpvMhDa5eRxW7R5B2U=
8486
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
8587
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
8688
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=

chart/open-feature-operator/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ The command removes all the Kubernetes components associated with the chart and
108108
| `sidecarConfiguration.managementPort` | Sets the value of the `XXX_MANAGEMENT_PORT` environment variable for the injected sidecar. | `8014` |
109109
| `sidecarConfiguration.socketPath` | Sets the value of the `XXX_SOCKET_PATH` environment variable for the injected sidecar. | `""` |
110110
| `sidecarConfiguration.image.repository` | Sets the image for the injected sidecar. | `ghcr.io/open-feature/flagd` |
111-
| `sidecarConfiguration.image.tag` | Sets the version tag for the injected sidecar. | `v0.10.3` |
111+
| `sidecarConfiguration.image.tag` | Sets the version tag for the injected sidecar. | `v0.11.1` |
112112
| `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`. | `""` |
113113
| `sidecarConfiguration.envVarPrefix` | Sets the prefix for all environment variables set in the injected sidecar. | `FLAGD` |
114114
| `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` |
@@ -143,7 +143,7 @@ The command removes all the Kubernetes components associated with the chart and
143143
| `flagdProxyConfiguration.port` | Sets the port to expose the sync API on. | `8015` |
144144
| `flagdProxyConfiguration.managementPort` | Sets the port to expose the management API on. | `8016` |
145145
| `flagdProxyConfiguration.image.repository` | Sets the image for the flagd-proxy deployment. | `ghcr.io/open-feature/flagd-proxy` |
146-
| `flagdProxyConfiguration.image.tag` | Sets the tag for the flagd-proxy deployment. | `v0.6.2` |
146+
| `flagdProxyConfiguration.image.tag` | Sets the tag for the flagd-proxy deployment. | `v0.6.4` |
147147
| `flagdProxyConfiguration.debugLogging` | Controls the addition of the `--debug` flag to the container startup arguments. | `false` |
148148

149149
### Flagd configuration
@@ -155,7 +155,7 @@ The command removes all the Kubernetes components associated with the chart and
155155
| `flagdConfiguration.syncPort` | Sets the port to expose the sync API on. | `8015` |
156156
| `flagdConfiguration.managementPort` | Sets the port to expose the management API on. | `8014` |
157157
| `flagdConfiguration.image.repository` | Sets the image for the flagd deployment. | `ghcr.io/open-feature/flagd` |
158-
| `flagdConfiguration.image.tag` | Sets the tag for the flagd deployment. | `v0.10.3` |
158+
| `flagdConfiguration.image.tag` | Sets the tag for the flagd deployment. | `v0.11.1` |
159159
| `flagdConfiguration.debugLogging` | Controls the addition of the `--debug` flag to the container startup arguments. | `false` |
160160

161161
### Operator resource configuration

chart/open-feature-operator/values.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ sidecarConfiguration:
2222
## @param sidecarConfiguration.image.repository Sets the image for the injected sidecar.
2323
repository: "ghcr.io/open-feature/flagd"
2424
## @param sidecarConfiguration.image.tag Sets the version tag for the injected sidecar.
25-
tag: v0.10.3
25+
tag: v0.11.1
2626
## @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`.
2727
providerArgs: ""
2828
## @param sidecarConfiguration.envVarPrefix Sets the prefix for all environment variables set in the injected sidecar.
@@ -83,7 +83,7 @@ flagdProxyConfiguration:
8383
## @param flagdProxyConfiguration.image.repository Sets the image for the flagd-proxy deployment.
8484
repository: "ghcr.io/open-feature/flagd-proxy"
8585
## @param flagdProxyConfiguration.image.tag Sets the tag for the flagd-proxy deployment.
86-
tag: v0.6.2
86+
tag: v0.6.4
8787
## @param flagdProxyConfiguration.debugLogging Controls the addition of the `--debug` flag to the container startup arguments.
8888
debugLogging: false
8989

@@ -101,7 +101,7 @@ flagdConfiguration:
101101
## @param flagdConfiguration.image.repository Sets the image for the flagd deployment.
102102
repository: "ghcr.io/open-feature/flagd"
103103
## @param flagdConfiguration.image.tag Sets the tag for the flagd deployment.
104-
tag: v0.10.3
104+
tag: v0.11.1
105105
## @param flagdConfiguration.debugLogging Controls the addition of the `--debug` flag to the container startup arguments.
106106
debugLogging: false
107107

common/types/envconfig.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ type EnvConfig struct {
55
FlagdProxyImage string `envconfig:"FLAGD_PROXY_IMAGE" default:"ghcr.io/open-feature/flagd-proxy"`
66
FlagsValidationEnabled bool `envconfig:"FLAGS_VALIDATION_ENABLED" default:"true"`
77
// renovate: datasource=github-tags depName=open-feature/flagd/flagd-proxy
8-
FlagdProxyTag string `envconfig:"FLAGD_PROXY_TAG" default:"v0.6.2"`
8+
FlagdProxyTag string `envconfig:"FLAGD_PROXY_TAG" default:"v0.6.4"`
99
FlagdProxyPort int `envconfig:"FLAGD_PROXY_PORT" default:"8015"`
1010
FlagdProxyManagementPort int `envconfig:"FLAGD_PROXY_MANAGEMENT_PORT" default:"8016"`
1111
FlagdProxyDebugLogging bool `envconfig:"FLAGD_PROXY_DEBUG_LOGGING" default:"false"`
1212

1313
FlagdImage string `envconfig:"FLAGD_IMAGE" default:"ghcr.io/open-feature/flagd"`
1414
// renovate: datasource=github-tags depName=open-feature/flagd/flagd
15-
FlagdTag string `envconfig:"FLAGD_TAG" default:"v0.10.3"`
15+
FlagdTag string `envconfig:"FLAGD_TAG" default:"v0.11.1"`
1616
FlagdPort int `envconfig:"FLAGD_PORT" default:"8013"`
1717
FlagdOFREPPort int `envconfig:"FLAGD_OFREP_PORT" default:"8016"`
1818
FlagdSyncPort int `envconfig:"FLAGD_SYNC_PORT" default:"8015"`
@@ -24,7 +24,7 @@ type EnvConfig struct {
2424
SidecarPort int `envconfig:"SIDECAR_PORT" default:"8013"`
2525
SidecarImage string `envconfig:"SIDECAR_IMAGE" default:"ghcr.io/open-feature/flagd"`
2626
// renovate: datasource=github-tags depName=open-feature/flagd/flagd
27-
SidecarTag string `envconfig:"SIDECAR_TAG" default:"v0.10.3"`
27+
SidecarTag string `envconfig:"SIDECAR_TAG" default:"v0.11.1"`
2828
SidecarSocketPath string `envconfig:"SIDECAR_SOCKET_PATH" default:""`
2929
SidecarEvaluator string `envconfig:"SIDECAR_EVALUATOR" default:"json"`
3030
SidecarProviderArgs string `envconfig:"SIDECAR_PROVIDER_ARGS" default:""`

controllers/core/featureflagsource/controller.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ type FeatureFlagSourceReconciler struct {
4545
}
4646

4747
// renovate: datasource=github-tags depName=open-feature/flagd/flagd-proxy
48-
const flagdProxyTag = "v0.6.2"
48+
const flagdProxyTag = "v0.6.4"
4949

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

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

+1-1
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.10.3
29+
image: ghcr.io/open-feature/flagd:v0.11.1
3030
ports:
3131
- containerPort: 8014
3232
name: management

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

+1-1
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.10.3
29+
image: ghcr.io/open-feature/flagd:v0.11.1
3030
ports:
3131
- containerPort: 8014
3232
name: management

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

+1-1
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.10.3
16+
image: ghcr.io/open-feature/flagd:v0.11.1

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

+1-1
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.10.3
16+
image: ghcr.io/open-feature/flagd:v0.11.1

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

+1-1
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.10.3
17+
image: ghcr.io/open-feature/flagd:v0.11.1

0 commit comments

Comments
 (0)