Skip to content

Commit 5d8c829

Browse files
authored
fix: bump flagd and flagd proxy version (#577)
Signed-off-by: Michael Beemer <[email protected]>
1 parent 5262fa7 commit 5d8c829

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

chart/open-feature-operator/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ The command removes all the Kubernetes components associated with the chart and
9898
| `sidecarConfiguration.managementPort` | Sets the value of the `XXX_MANAGEMENT_PORT` environment variable for the injected sidecar. | `8014` |
9999
| `sidecarConfiguration.socketPath` | Sets the value of the `XXX_SOCKET_PATH` environment variable for the injected sidecar. | `""` |
100100
| `sidecarConfiguration.image.repository` | Sets the image for the injected sidecar. | `ghcr.io/open-feature/flagd` |
101-
| `sidecarConfiguration.image.tag` | Sets the version tag for the injected sidecar. | `v0.7.0` |
101+
| `sidecarConfiguration.image.tag` | Sets the version tag for the injected sidecar. | `v0.7.2` |
102102
| `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`. | `""` |
103103
| `sidecarConfiguration.envVarPrefix` | Sets the prefix for all environment variables set in the injected sidecar. | `FLAGD` |
104104
| `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` |
@@ -116,7 +116,7 @@ The command removes all the Kubernetes components associated with the chart and
116116
| `flagdProxyConfiguration.port` | Sets the port to expose the sync API on. | `8015` |
117117
| `flagdProxyConfiguration.managementPort` | Sets the port to expose the management API on. | `8016` |
118118
| `flagdProxyConfiguration.image.repository` | Sets the image for the flagd-proxy deployment. | `ghcr.io/open-feature/flagd-proxy` |
119-
| `flagdProxyConfiguration.image.tag` | Sets the tag for the flagd-proxy deployment. | `v0.2.8` |
119+
| `flagdProxyConfiguration.image.tag` | Sets the tag for the flagd-proxy deployment. | `v0.3.2` |
120120
| `flagdProxyConfiguration.debugLogging` | Controls the addition of the `--debug` flag to the container startup arguments. | `false` |
121121

122122
### Operator resource configuration
@@ -130,7 +130,7 @@ The command removes all the Kubernetes components associated with the chart and
130130
| `controllerManager.kubeRbacProxy.resources.requests.cpu` | Sets cpu resource requests for kube-rbac-proxy. | `5m` |
131131
| `controllerManager.kubeRbacProxy.resources.requests.memory` | Sets memory resource requests for kube-rbac-proxy. | `64Mi` |
132132
| `controllerManager.manager.image.repository` | Sets the image for the operator. | `ghcr.io/open-feature/open-feature-operator` |
133-
| `controllerManager.manager.image.tag` | Sets the version tag for the operator. | `v0.2.36` |
133+
| `controllerManager.manager.image.tag` | Sets the version tag for the operator. | `v0.5.1` |
134134
| `controllerManager.manager.resources.limits.cpu` | Sets cpu resource limits for operator. | `500m` |
135135
| `controllerManager.manager.resources.limits.memory` | Sets memory resource limits for operator. | `128Mi` |
136136
| `controllerManager.manager.resources.requests.cpu` | Sets cpu resource requests for operator. | `10m` |

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.7.0
19+
tag: v0.7.2
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.8
49+
tag: v0.3.2
5050
## @param flagdProxyConfiguration.debugLogging Controls the addition of the `--debug` flag to the container startup arguments.
5151
debugLogging: false
5252

common/types/envconfig.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ type EnvConfig struct {
44
PodNamespace string `envconfig:"POD_NAMESPACE" default:"open-feature-operator-system"`
55
FlagdProxyImage string `envconfig:"FLAGD_PROXY_IMAGE" default:"ghcr.io/open-feature/flagd-proxy"`
66
// renovate: datasource=github-tags depName=open-feature/flagd/flagd-proxy
7-
FlagdProxyTag string `envconfig:"FLAGD_PROXY_TAG" default:"v0.3.0"`
7+
FlagdProxyTag string `envconfig:"FLAGD_PROXY_TAG" default:"v0.3.2"`
88
FlagdProxyPort int `envconfig:"FLAGD_PROXY_PORT" default:"8015"`
99
FlagdProxyManagementPort int `envconfig:"FLAGD_PROXY_MANAGEMENT_PORT" default:"8016"`
1010
FlagdProxyDebugLogging bool `envconfig:"FLAGD_PROXY_DEBUG_LOGGING" default:"false"`
@@ -14,7 +14,7 @@ type EnvConfig struct {
1414
SidecarPort int `envconfig:"SIDECAR_PORT" default:"8013"`
1515
SidecarImage string `envconfig:"SIDECAR_IMAGE" default:"ghcr.io/open-feature/flagd"`
1616
// renovate: datasource=github-tags depName=open-feature/flagd/flagd
17-
SidecarTag string `envconfig:"SIDECAR_TAG" default:"v0.7.0"`
17+
SidecarTag string `envconfig:"SIDECAR_TAG" default:"v0.7.2"`
1818
SidecarSocketPath string `envconfig:"SIDECAR_SOCKET_PATH" default:""`
1919
SidecarEvaluator string `envconfig:"SIDECAR_EVALUATOR" default:"json"`
2020
SidecarProviderArgs string `envconfig:"SIDECAR_PROVIDER_ARGS" default:""`

controllers/core/featureflagsource/controller.go

Lines changed: 1 addition & 1 deletion
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.3.0"
48+
const flagdProxyTag = "v0.3.2"
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/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.7.0
16+
image: ghcr.io/open-feature/flagd:v0.7.2

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

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

0 commit comments

Comments
 (0)