Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make some slight adjustments to the built-in help related to #39 #40

Merged
merged 1 commit into from
Jun 1, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/vault.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ def parse_args(args):
\n
Environment Variables:
\n
VAULT_ADDR: (The HTTP address of Vault, for example, http://localhost:8200)
VAULT_TOKEN: (The token used to authenticate with Vault)
VAULT_ADDR: (The HTTP address of Vault, for example, http://localhost:8200)
VAULT_TOKEN: (The token used to authenticate with Vault)
VAULT_NAMESPACE: (The Vault Namespace to use (Vault enterprise only))
""", formatter_class=RawTextHelpFormatter)
subparsers = parser.add_subparsers(dest="action", required=True)

Expand Down Expand Up @@ -145,7 +146,6 @@ def get_git_root(self):
return self.git_root
except Exception as ex:
print(f"There was an error finding the root git repository, please specify a path within the yaml file. For more information, see Vault Path Templating: https://github.com/Just-Insane/helm-vault#vault-path-templating")
pass

class Envs:
def __init__(self, args):
Expand Down