-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
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
Move towards using standard kubernetes provider for manifests/crds #821
Comments
Tried again, changing only the kubernetes version by including the flag It did require that I spin down and delete my existing minikube cluster, as it was running kubernetes 1.22. As such, I had to back up and repeat some of the previous steps in the Local Testing instructions to initialize the minikube cluster. As mentioned, the only step that changed was including an explicit kubernetes version in the minikube startup command. The rest of the steps proceeded smoothly and without problems exactly as indicated. Of course, when attempting to navigate to |
Going to reopen this issue seem related to hashicorp/terraform-provider-kubernetes-alpha#235. Looks like terraform now supports a kubernetes_manifest and we should now start to use the kubernetes provider for all this work. https://www.hashicorp.com/blog/beta-support-for-crds-in-the-terraform-provider-for-kubernetes https://github.com/hashicorp/terraform-provider-kubernetes |
Done in #1003. Closing issue. |
Recently I've made a simple test running the QHub deployment on a freshly installed machine. Basically I've set up minikube + kubectl and spun up a minikube cluster. Followed the Local Testing section of the Testing docs and it all worked fine until "Deploy and render the infrastructure" where I got the following error when deploying:
I've tried to search about that problem but didn't find much information regarding terraform usage. Fortunatly, I was able to solve that problem removing the docker engine installation and changing it's version from latest to
20.10.8
as well as directly specifying the kubernetes version for the cluster:minikube start --kubernetes-version=1.19.4 --driver=docker --cpus 4 --memory 4096
There might be some changes within the latest versions of the necessary components for the local deployment, so I would suggest a review in our docs.
The text was updated successfully, but these errors were encountered: