You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 28, 2021. It is now read-only.
Hi, I use the following workaround and it works: sudo nano /etc/kubernetes/manifests/kube-apiserver.yaml ; Go to section spec: -> containers: -> - command: And add this: - --runtime-config=apps/v1beta1=true,extensions/v1beta1/deployments=true.
Hi, I use the following workaround and it works: sudo nano /etc/kubernetes/manifests/kube-apiserver.yaml ; Go to section spec: -> containers: -> - command: And add this: - --runtime-config=apps/v1beta1=true,extensions/v1beta1/deployments=true.
Thanks for your efforts. It is really appreciated.
However, I'm not sure whether this is applicable in cloud providers like AWS, GCP, DigitalOcean, AKS.
E0814 14:45:45.672805 1 reflector.go:205] github.com/oracle/mysql-operator/vendor/k8s.io/client-go/informers/factory.go:87: Failed to list *v1beta1.StatefulSet: the server could not find the requested resource
Also v1beta1.StatefulSet has been depricated in 1.16
Type: Bug
Affected Versions
MySQL Operator Version: All (tested with 0.2.0)
Kubernetes version: 1.16+
Behaviour:
mysql-operator doesn't run as expected due to the usage of deprecated APIs.
Expectation:
Should support and run properly in Kubernetes 1.16 and above. But runs properly only till version 1.15
Steps to reproduce:
Possible Reasons:
Deployment
version has to be changed fromapiVersion: apps/v1beta1
toapiVersion: apps/v1
.CustomResourceDefinition
has to be upgraded fromapiextensions.k8s.io/v1beta1
toapiextensions.k8s.io/v1
with necessary addition of required objects.Reference: Kunernetes Deprecations and Removals.
Reason for not taking pull request:
Beginner in Kubernetes and not sure how to work with CustomResourceDefinition.
The text was updated successfully, but these errors were encountered: