We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When performing a helm install I'm getting the following error:
$ helm install -f netbox-values.yaml netbox startechnica/netbox Error: INSTALLATION FAILED: unable to build kubernetes objects from release manifest: error validating "": error validating data: apiVersion isn't string type
This seems to come from netbox/templates/istio/VirtualService.yaml (apiVersion: false):
netbox/templates/istio/VirtualService.yaml
apiVersion: false
$ helm template -f netbox-values.yaml startechnica/netbox . --- # Source: netbox/templates/istio/VirtualService.yaml apiVersion: false kind: VirtualService metadata: name: release-name-netbox namespace: "default" labels: app.kubernetes.io/instance: release-name app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: netbox app.kubernetes.io/version: v3.7.2 helm.sh/chart: netbox-5.0.5 spec: gateways: - default/release-name-netbox hosts: - netbox.local http: - match: - uri: prefix: "/" route: - destination: host: release-name-netbox.default.svc.cluster.local port: number: 80 --- .
Any idea how to solve this?
The text was updated successfully, but these errors were encountered:
Could be due to changes in e23bcdf ?
Sorry, something went wrong.
You should either have Istio service mesh or Kubernetes Gateway API installed to use Gateway. Or just set gateway.enabled to false to disable.
gateway.enabled
false
Hi @firmansyahn , thanks for the response. I have gateway.enabled set to false:
gateway: ## @param gateway.enabled Enable Istio Gateway and VirtualService ## enabled: false ## @param gateway.dedicated ## dedicated: false ## @param gateway.gatewayApi ## gatewayApi: ## @param gateway.gatewayApi.create Create Kubernetes Gateway API gateway ## create: false ## @param gateway.name ## name: "" ## @param gateway.namespace ## namespace: "" ## @param gateway.gatewayClassName ## gatewayClassName: istio ## @param gateway.listeners ## listeners: [] # - name: http # port: 80 # protocol: HTTP # - name: https # port: 443 # protocol: HTTPS ## @param gateway.existingGateway ## existingGateway: ~ ## @param gateway.existingVirtualService ## existingVirtualService: ~ ## @param gateway.extraRoute Array of extra Kubernetes Gateway API Route to deploy with the release ## extraRoute: []
No branches or pull requests
When performing a helm install I'm getting the following error:
This seems to come from
netbox/templates/istio/VirtualService.yaml
(apiVersion: false
):Any idea how to solve this?
The text was updated successfully, but these errors were encountered: