AndreaVida opened a new issue, #588:
URL: https://github.com/apache/apisix-helm-chart/issues/588
When using service type `ClusterIP` Chart deployment fails with following
error:
```
Service is invalid: spec.externalTrafficPolicy: Invalid value: "Cluster":
may only be set when `type` is 'NodePort' or 'LoadBalancer'
```
A workaround is to set value like this:
```yaml
service:
# -- Apache APISIX service type for user access itself(default NodePort)
type: ClusterIP
# -- Setting how the Service route external traffic (LoadBalancer type
only)
externalTrafficPolicy: ""
```
But this is still formally invalid and does not validate with schema
[service-v1.json#/properties/spec/properties/externalTrafficPolicy/enum](https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/v1.23.0-standalone-strict/service-v1.json#/properties/spec/properties/externalTrafficPolicy/enum)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]