Skip to content

Commit a8ab70e

Browse files
Merge pull request #21000 from soltysh/deprecate_types
Deprecate oc types
2 parents 649d7d3 + 9d9e8f0 commit a8ab70e

File tree

3 files changed

+6
-91
lines changed

3 files changed

+6
-91
lines changed

contrib/completions/bash/oc

-43
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contrib/completions/zsh/oc

-43
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/oc/cli/types/types.go

+6-5
Original file line numberDiff line numberDiff line change
@@ -227,11 +227,12 @@ func NewCmdTypes(fullName string, f kcmdutil.Factory, streams genericclioptions.
227227
writeConcept(buf, c)
228228
}
229229
cmd := &cobra.Command{
230-
Use: "types",
231-
Short: "An introduction to concepts and types",
232-
Long: fmt.Sprintf(typesLong, buf.String()),
233-
Example: fmt.Sprintf(typesExample, fullName),
234-
Run: kcmdutil.DefaultSubCommandRun(streams.Out),
230+
Use: "types",
231+
Short: "An introduction to concepts and types",
232+
Long: fmt.Sprintf(typesLong, buf.String()),
233+
Example: fmt.Sprintf(typesExample, fullName),
234+
Deprecated: "refer to official documentation instead",
235+
Run: kcmdutil.DefaultSubCommandRun(streams.Out),
235236
}
236237
return cmd
237238
}

0 commit comments

Comments
 (0)