Hello Team, Can someone help me with the below err...
# general
r
Hello Team, Can someone help me with the below error
Copy code
Error: INSTALLATION FAILED: unable to build kubernetes objects from release manifest: unable to recognize "": no matches for kind "Ingress" in version "extensions/v1beta1"
m
@Xiang Fu
x
I think this is due to the ingress upgrade for k8s
r
Yes
It tried to enable the ingress to access from the browser
x
I think your k8s is on higher version that it doesn’t support the current ingress
cc: @Diana Arnos
r
what is the version this supports
?
current implementation is
apiVersion: extensions/v1beta1
r
Yes I want to know the K8 version that supports extensions/v1beta1
x
We should upgrade this to
Copy code
apiVersion: <http://networking.k8s.io/v1|networking.k8s.io/v1>
https://kubernetes.io/docs/concepts/services-networking/ingress/
r
Thanks for sharing
Can I change ingress APi version ?
Just confused on how I can modify the ingress.yaml file jus for my deployment
The helm chart uses the the templates from the Repo right
Wondering how can I modify the templates and make use of Helm to install
or the alternative way is to install k8 cluster with an older version that supports apiVersion: extensions/v1beta1
x
Yes, you can modify the chart
r
okay
x
In short the chart is just a template to be installed
helm will apply values to the template
r
Got it
x
values.yaml has the values and flags
i can review the change if would love to contribute as well
r
Hope it doesn't mess up if I can change the apiVersion to
Copy code
apiVersion: <http://networking.k8s.io/v1|networking.k8s.io/v1>
x
you need to change the rest of the file
just change apiVersion doesn’t work
r
okay
r
Thanks for sharing