Commit e560a4b6 authored by Eric Tune's avatar Eric Tune

Merge pull request #14360 from mikedanese/ds-describe

move daemonset describe to experimental
parents ab07e320 2313c9ad
...@@ -329,7 +329,6 @@ _kubectl_describe() ...@@ -329,7 +329,6 @@ _kubectl_describe()
must_have_one_flag=() must_have_one_flag=()
must_have_one_noun=() must_have_one_noun=()
must_have_one_noun+=("daemonset")
must_have_one_noun+=("limitrange") must_have_one_noun+=("limitrange")
must_have_one_noun+=("minion") must_have_one_noun+=("minion")
must_have_one_noun+=("namespace") must_have_one_noun+=("namespace")
......
...@@ -69,7 +69,6 @@ func describerMap(c *client.Client) map[string]Describer { ...@@ -69,7 +69,6 @@ func describerMap(c *client.Client) map[string]Describer {
m := map[string]Describer{ m := map[string]Describer{
"Pod": &PodDescriber{c}, "Pod": &PodDescriber{c},
"ReplicationController": &ReplicationControllerDescriber{c}, "ReplicationController": &ReplicationControllerDescriber{c},
"DaemonSet": &DaemonSetDescriber{c},
"Secret": &SecretDescriber{c}, "Secret": &SecretDescriber{c},
"Service": &ServiceDescriber{c}, "Service": &ServiceDescriber{c},
"ServiceAccount": &ServiceAccountDescriber{c}, "ServiceAccount": &ServiceAccountDescriber{c},
...@@ -87,7 +86,8 @@ func describerMap(c *client.Client) map[string]Describer { ...@@ -87,7 +86,8 @@ func describerMap(c *client.Client) map[string]Describer {
func expDescriberMap(c *client.Client) map[string]Describer { func expDescriberMap(c *client.Client) map[string]Describer {
return map[string]Describer{ return map[string]Describer{
"HorizontalPodAutoscaler": &HorizontalPodAutoscalerDescriber{c}, "HorizontalPodAutoscaler": &HorizontalPodAutoscalerDescriber{c},
"Job": &JobDescriber{c}, "DaemonSet": &DaemonSetDescriber{c},
"Job": &JobDescriber{c},
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment