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
kubectl run
https://kubernetes.io/docs/setup/release/notes/#deprecation-4
Remove all the generators from kubectl run. It will now only create pods. Additionally, deprecates all the flags that are not relevant anymore.
This affects the sections:
kubectl run nginx --image=nginx --replicas=3
To construct the HTTP request, kubectl uses something called generators which is an abstraction that takes care of serialization.
After kubectl generates the runtime object
(kinda like the inverse process of kubectl's generators)
And that's all I could find with some grokking.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Kubernetes has deprectated generators in
kubectl run
in version 1.18.https://kubernetes.io/docs/setup/release/notes/#deprecation-4
This affects the sections:
And that's all I could find with some grokking.
The text was updated successfully, but these errors were encountered: