You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: charts/apisix-ingress-controller/README.md
+13-5Lines changed: 13 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -141,11 +141,19 @@ The same for container level, you need to set:
141
141
| deployment.tolerations | list |`[]`||
142
142
| deployment.topologySpreadConstraints | list |`[]`| Topology Spread Constraints for pod assignment spread across your cluster among failure-domains ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods|
| gatewayProxy.createDefault | bool |`false`| Controls whether to create a default GatewayProxy custom resource. |
145
+
| gatewayProxy.provider | object |`{"controlPlane":{"auth":{"adminKey":{"value":"edd1c9f034335f136f87ad84b625c8f1","valueFrom":{}},"type":"AdminKey"},"endpoints":[],"service":{"name":"","port":9180}},"pluginMetadata":{},"plugins":[],"type":"ControlPlane"}`| Configuration for the GatewayProxy provider connection |
146
+
| gatewayProxy.provider.controlPlane | object |`{"auth":{"adminKey":{"value":"edd1c9f034335f136f87ad84b625c8f1","valueFrom":{}},"type":"AdminKey"},"endpoints":[],"service":{"name":"","port":9180}}`| ControlPlane provider specific configuration Either `endpoints` or `service` must be specified, but not both. |
147
+
| gatewayProxy.provider.controlPlane.auth | object |`{"adminKey":{"value":"edd1c9f034335f136f87ad84b625c8f1","valueFrom":{}},"type":"AdminKey"}`| Authentication configuration for control plane connection |
148
+
| gatewayProxy.provider.controlPlane.auth.adminKey | object |`{"value":"edd1c9f034335f136f87ad84b625c8f1","valueFrom":{}}`| AdminKey authentication configuration. Either `value` or `valueFrom` must be specified, but not both. |
149
+
| gatewayProxy.provider.controlPlane.auth.adminKey.value | string |`"edd1c9f034335f136f87ad84b625c8f1"`| The admin key value for authentication. |
150
+
| gatewayProxy.provider.controlPlane.auth.adminKey.valueFrom | object |`{}`| Reference to admin key stored in a Kubernetes Secret |
151
+
| gatewayProxy.provider.controlPlane.auth.type | string |`AdminKey`| Authentication type. Only `AdminKey` is currently supported. |
152
+
| gatewayProxy.provider.controlPlane.endpoints | list |`[]`| List of APISIX control plane Admin API endpoints. example: ["http://apisix-admin.default.svc.cluster.local:9180"]|
153
+
| gatewayProxy.provider.controlPlane.service | object |`{"name":"","port":9180}`| Alternatively, reference a Kubernetes Service for the APISIX Admin API. |
154
+
| gatewayProxy.provider.pluginMetadata | object |`{}`| Global plugin metadata shared by all instances of the same plugin. |
155
+
| gatewayProxy.provider.plugins | list |`[]`| List of global plugins to be enabled on the GatewayProxy. |
156
+
| gatewayProxy.provider.type | string |`"ControlPlane"`| Specifies the provider type for the GatewayProxy. |
| nameOverride | string |`""`| Default values for apisix-ingress-controller. This is a YAML-formatted file. Declare variables to be passed into your templates. |
151
159
| podDisruptionBudget | object |`{"enabled":false,"maxUnavailable":1,"minAvailable":"90%"}`| See https://kubernetes.io/docs/tasks/run-application/configure-pdb/ for more details |
0 commit comments