From 105610d0bbe2df13bc12d6d5d68720aba58853bd Mon Sep 17 00:00:00 2001 From: Mohammed Shoukath Ali Date: Sun, 23 Jan 2022 19:17:13 +0530 Subject: [PATCH] Fixed issue - borken link https://kubernetes.io/docs/reference/kubectl/conventions/ #31078 --- .../en/docs/reference/kubectl/conventions.md | 23 ------------------- 1 file changed, 23 deletions(-) diff --git a/content/en/docs/reference/kubectl/conventions.md b/content/en/docs/reference/kubectl/conventions.md index c8016453cd..e62c5d5e44 100644 --- a/content/en/docs/reference/kubectl/conventions.md +++ b/content/en/docs/reference/kubectl/conventions.md @@ -31,29 +31,6 @@ For `kubectl run` to satisfy infrastructure as code: You can use the `--dry-run=client` flag to preview the object that would be sent to your cluster, without really submitting it. -{{< note >}} -All `kubectl run` generators are deprecated. See the Kubernetes v1.17 documentation for a [list](https://v1-17.docs.kubernetes.io/docs/reference/kubectl/conventions/#generators) of generators and how they were used. -{{< /note >}} - -#### Generators -You can generate the following resources with a kubectl command, `kubectl create --dry-run=client -o yaml`: - -* `clusterrole`: Create a ClusterRole. -* `clusterrolebinding`: Create a ClusterRoleBinding for a particular ClusterRole. -* `configmap`: Create a ConfigMap from a local file, directory or literal value. -* `cronjob`: Create a CronJob with the specified name. -* `deployment`: Create a Deployment with the specified name. -* `job`: Create a Job with the specified name. -* `namespace`: Create a Namespace with the specified name. -* `poddisruptionbudget`: Create a PodDisruptionBudget with the specified name. -* `priorityclass`: Create a PriorityClass with the specified name. -* `quota`: Create a Quota with the specified name. -* `role`: Create a Role with single rule. -* `rolebinding`: Create a RoleBinding for a particular Role or ClusterRole. -* `secret`: Create a Secret using specified subcommand. -* `service`: Create a Service using specified subcommand. -* `serviceaccount`: Create a ServiceAccount with the specified name. - ### `kubectl apply` * You can use `kubectl apply` to create or update resources. For more information about using kubectl apply to update resources, see [Kubectl Book](https://kubectl.docs.kubernetes.io).