ambassador-chart
ambassador-chart copied to clipboard
failed to install CRD crds/filter.yaml: ... No matches for kind "CustomResourceDefinition" in version "apiextensions.k8s.io/v1beta1"
I want to use seldon-core and installed step by step.
my laptop environment below
- MacOS(M1)
- minikube : v1.25.1
- helm : v3.6.0
- kubectl : Client (v1.26.0) / Server (v1.23.1)
# Add helm repository
$ helm repo add datawire https://www.getambassador.io
$ helm repo update
# helm install ambassador
$ helm install ambassador datawire/ambassador \
--namespace seldon-system \
--create-namespace \
--set image.repository=quay.io/datawire/ambassador \
--set enableAES=false \
--set crds.keep=false
[Error]
[Question]
I know that kubectl (v1.22) does not support apiextensions.k8s.io/v1beta1
, and I heard that it is possible to change it to apiextensions.k8s.io/v1
If the apiVersion in crds/filter.yaml
file changes, can the ambassador be installed normally?
If so, can you change the apiVersion of that crds/filter.yaml
file?
-
apiextensions.k8s.io/v1beta1
>apiextensions.k8s.io/v1
@davidhyun We are also stuck with the same issue. May I know what approach did you take to resolve the issue?
Up
encountering the same issue as well
up