Commit e3f1e24 1 parent 9b8e8c3 commit e3f1e24 Copy full SHA for e3f1e24
File tree 4 files changed +22
-0
lines changed
chart/open-feature-operator
4 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -108,6 +108,13 @@ The command removes all the Kubernetes components associated with the chart and
108
108
| ` labels ` | Labels to apply to all of the pods in the operator. | ` {} ` |
109
109
| ` annotations ` | Annotations to apply to all of the pods in the operator. | ` {} ` |
110
110
111
+ ### Mutating Webhook configuration
112
+
113
+ | Name | Description | Value |
114
+ | -------------------------------- | --------------------------------------------------------- | -------- |
115
+ | ` mutatingWebhook.failurePolicy ` | FailurePolicy when the webhook does not respond | ` Ignore ` |
116
+ | ` mutatingWebhook.objectSelector ` | ObjectSelector on which pods the mutatingWebhook will run | ` {} ` |
117
+
111
118
### Sidecar configuration
112
119
113
120
| Name | Description | Value |
Original file line number Diff line number Diff line change @@ -18,6 +18,12 @@ labels: {}
18
18
# # @param annotations Annotations to apply to all of the pods in the operator.
19
19
annotations : {}
20
20
21
+ # # @section Mutating Webhook configuration
22
+ mutatingWebhook :
23
+ # # @param mutatingWebhook.failurePolicy FailurePolicy when the webhook does not respond
24
+ failurePolicy : Ignore
25
+ # # @param mutatingWebhook.objectSelector ObjectSelector on which pods the mutatingWebhook will run
26
+ objectSelector : {}
21
27
# # @section Sidecar configuration
22
28
sidecarConfiguration :
23
29
# # @param sidecarConfiguration.port Sets the value of the `XXX_PORT` environment variable for the injected sidecar.
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ patchesStrategicMerge:
16
16
- manager.yaml
17
17
- exclude-webhook-server-container-port.yaml
18
18
- exclude-validatingwebhook.yaml
19
+ - mutatingwebhook.yaml
19
20
20
21
configMapGenerator :
21
22
- name : manager-config
Original file line number Diff line number Diff line change
1
+ apiVersion : admissionregistration.k8s.io/v1
2
+ kind : MutatingWebhookConfiguration
3
+ metadata :
4
+ name : mutating-webhook-configuration
5
+ webhooks :
6
+ - name : mutate.openfeature.dev
7
+ failurePolicy : " ___{{ .Values.mutatingWebhook.failurePolicy }}___"
8
+ objectSelector : " ___{{ toYaml .Values.mutatingWebhook.objectSelector | nindent 4 }}___"
You can’t perform that action at this time.
0 commit comments