var diffLong …
var diffExample …
const maxRetries …
const sensitiveMaskDefault …
const sensitiveMaskBefore …
const sensitiveMaskAfter …
func diffError(err error) exec.ExitError { … }
type DiffOptions …
func NewDiffOptions(ioStreams genericiooptions.IOStreams) *DiffOptions { … }
func NewCmdDiff(f cmdutil.Factory, streams genericiooptions.IOStreams) *cobra.Command { … }
type DiffProgram …
func (d *DiffProgram) getCommand(args ...string) (string, exec.Cmd) { … }
func (d *DiffProgram) Run(from, to string) error { … }
type Printer …
func (p *Printer) Print(obj runtime.Object, w io.Writer) error { … }
type DiffVersion …
func NewDiffVersion(name string) (*DiffVersion, error) { … }
func (v *DiffVersion) getObject(obj Object) (runtime.Object, error) { … }
func (v *DiffVersion) Print(name string, obj runtime.Object, printer Printer) error { … }
type Directory …
func CreateDirectory(prefix string) (*Directory, error) { … }
func (d *Directory) NewFile(name string) (*os.File, error) { … }
func (d *Directory) Delete() error { … }
type Object …
type InfoObject …
var _ …
func (obj InfoObject) Live() runtime.Object { … }
func (obj InfoObject) Merged() (runtime.Object, error) { … }
func (obj InfoObject) Name() string { … }
func toUnstructured(obj runtime.Object) (*unstructured.Unstructured, error) { … }
type Masker …
func NewMasker(from, to runtime.Object) (*Masker, error) { … }
func (m Masker) dataFromUnstructured(u *unstructured.Unstructured) (map[string]interface{ … }
func (m *Masker) run() error { … }
func (m *Masker) From() runtime.Object { … }
func (m *Masker) To() runtime.Object { … }
type Differ …
func NewDiffer(from, to string) (*Differ, error) { … }
func (d *Differ) Diff(obj Object, printer Printer, showManagedFields bool) error { … }
func omitManagedFields(o runtime.Object) runtime.Object { … }
func (d *Differ) Run(diff *DiffProgram) error { … }
func (d *Differ) TearDown() { … }
func isConflict(err error) bool { … }
func (o *DiffOptions) Complete(f cmdutil.Factory, cmd *cobra.Command, args []string) error { … }
func (o *DiffOptions) Run() error { … }
func (o *DiffOptions) Validate() error { … }
func getObjectName(obj runtime.Object) (string, error) { … }