Merge pull request #69167 from apelisse/kubectl-diff

Move `diff` command from alpha sub-command to root cmd
This commit is contained in:
k8s-ci-robot
2018-09-27 20:52:11 -07:00
committed by GitHub
8 changed files with 10 additions and 10 deletions

View File

@@ -54,10 +54,10 @@ var (
run with "-u" (unicode) and "-N" (treat new files as empty) options.`))
diffExample = templates.Examples(i18n.T(`
# Diff resources included in pod.json.
kubectl alpha diff -f pod.json
kubectl diff -f pod.json
# Diff file read from stdin
cat service.yaml | kubectl alpha diff -f -`))
cat service.yaml | kubectl diff -f -`))
)
type DiffOptions struct {