password_reset

package
v0.80.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 2, 2024 License: MIT Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Cmd = &cobra.Command{
	Use:     "password-reset",
	Short:   "Reset ArgoCD Admin Passowrd",
	Aliases: []string{"pr"},
	Args:    cobra.NoArgs,
	Run: func(c *cobra.Command, args []string) {
		// TODO: Rewrite using Go
		var err error
		err = exec_utils.ExecOut("sh", "-c", `kubectl patch secret argocd-secret  -p '{"data": {"admin.password": null, "admin.passwordMtime": null}}' -n `+FlagNamespace)
		if err != nil {
			log.Fatalln(err)
		}
		err = exec_utils.ExecOut("sh", "-c", `kubectl delete pod -l app.kubernetes.io/component=server -n `+FlagNamespace)
		if err != nil {
			log.Fatalln(err)
		}
	},
}
View Source
var FlagNamespace string

Functions

This section is empty.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL