airshipctl/docs/source/cli/airshipctl_secret_decrypt.md
Sirisha Gopigiri f705ff0000 Revert "Encrypt and decrypt using sops"
This reverts commit 9a608de653ffe1ce8f60b5f16249e2152b3522ad.

Requesting revert because of the sops+gpg testcase failure issues. The failed testcases are impacting airship-airshipctl-lint-unit zuul gate.

For more details please refer to https://github.com/airshipit/airshipctl/issues/378

Change-Id: I60f6b5daaeebc038b68556c60413b3d0c6db6d68
2020-11-05 13:53:15 +00:00

1.3 KiB

airshipctl secret decrypt

Decrypt encrypted yaml files into plaintext files representing Kubernetes objects consisting of sensitive data.

Synopsis

Decrypt encrypted yaml files into plaintext files representing Kubernetes objects consisting of sensitive data.

airshipctl secret decrypt [flags]

Examples


# Decrypt all encrypted files in the manifests directory.
airshipctl secret decrypt

# Decrypt encrypted file from src and write the plain text to a different dst file
airshipctl secret decrypt \
	--src /tmp/manifests/target/secrets/encrypted-qualified-secret.yaml \
	--dst /tmp/manifests/target/secrets/qualified-secret.yaml

Options

      --dst string   Path to the file or directory to store decrypted secrets. Defaults to src if empty.
  -h, --help         help for decrypt
      --src string   Path to the file or directory that has secrets in encrypted text that need to be decrypted. Defaults to the manifest location in airship config

Options inherited from parent commands

      --airshipconf string   Path to file for airshipctl configuration. (default "$HOME/.airship/config")
      --debug                enable verbose output

SEE ALSO