Commit 8ae6ee8 1 parent 52bac10 commit 8ae6ee8 Copy full SHA for 8ae6ee8
File tree 4 files changed +9
-1
lines changed
chart/open-feature-operator
4 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,9 @@ and deploying to your cluster. Please be aware that it is using the cluster your
36
36
37
37
Some part of the project docs may be autogenerated and require running a script.
38
38
39
+ #### Re-generating helm docs after modifying the chart
40
+ ` ./.github/scripts/generate-helm-docs.sh `
41
+
39
42
#### CRDs Docs
40
43
If you modified or added crds to the project, then you should recreate the crds.md file. To do so run:
41
44
Original file line number Diff line number Diff line change @@ -148,6 +148,7 @@ The command removes all the Kubernetes components associated with the chart and
148
148
149
149
| Name | Description | Value |
150
150
| ------------------------------------------ | ------------------------------------------------------------------------------- | ---------------------------------- |
151
+ | ` flagdProxyConfiguration.replicaCount ` | sets the number of replicas for the flagd-proxy deployment. | ` 1 ` |
151
152
| ` flagdProxyConfiguration.port ` | Sets the port to expose the sync API on. | ` 8015 ` |
152
153
| ` flagdProxyConfiguration.managementPort ` | Sets the port to expose the management API on. | ` 8016 ` |
153
154
| ` flagdProxyConfiguration.image.repository ` | Sets the image for the flagd-proxy deployment. | ` ghcr.io/open-feature/flagd-proxy ` |
@@ -177,7 +178,7 @@ The command removes all the Kubernetes components associated with the chart and
177
178
| ` controllerManager.kubeRbacProxy.resources.requests.cpu ` | Sets cpu resource requests for kube-rbac-proxy. | ` 5m ` |
178
179
| ` controllerManager.kubeRbacProxy.resources.requests.memory ` | Sets memory resource requests for kube-rbac-proxy. | ` 64Mi ` |
179
180
| ` controllerManager.manager.image.repository ` | Sets the image for the operator. | ` ghcr.io/open-feature/open-feature-operator ` |
180
- | ` controllerManager.manager.image.tag ` | Sets the version tag for the operator. | ` v0.7.2 ` |
181
+ | ` controllerManager.manager.image.tag ` | Sets the version tag for the operator. | ` v0.8.0 ` |
181
182
| ` controllerManager.manager.resources.limits.cpu ` | Sets cpu resource limits for operator. | ` 500m ` |
182
183
| ` controllerManager.manager.resources.limits.memory ` | Sets memory resource limits for operator. | ` 128Mi ` |
183
184
| ` controllerManager.manager.resources.requests.cpu ` | Sets cpu resource requests for operator. | ` 10m ` |
Original file line number Diff line number Diff line change @@ -84,6 +84,8 @@ inProcessConfiguration:
84
84
85
85
# # @section Flagd-proxy configuration
86
86
flagdProxyConfiguration :
87
+ # # @param flagdProxyConfiguration.replicaCount sets the number of replicas for the flagd-proxy deployment.
88
+ replicaCount : 1
87
89
# # @param flagdProxyConfiguration.port Sets the port to expose the sync API on.
88
90
port : 8015
89
91
# # @param flagdProxyConfiguration.managementPort Sets the port to expose the management API on.
Original file line number Diff line number Diff line change 61
61
value : " {{ .Values.sidecarConfiguration.probesEnabled }}"
62
62
- name : FLAGD_PROXY_IMAGE
63
63
value : " {{ .Values.flagdProxyConfiguration.image.repository }}"
64
+ - name : FLAGD_PROXY_REPLICA_COUNT
65
+ value : " {{ .Values.flagdProxyConfiguration.replicaCount }}"
64
66
- name : FLAGD_PROXY_TAG
65
67
value : " {{ .Values.flagdProxyConfiguration.image.tag }}"
66
68
- name : FLAGD_PROXY_PORT
You can’t perform that action at this time.
0 commit comments