Created
November 11, 2020 14:05
-
-
Save talalUcef/32c76f1ffb65f5c1bd135c2dc9b3fe48 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create a namespace for Vault | |
kubectl create namespace vault | |
#Add helm official repo for Vault | |
helm repo add hashicorp https://helm.releases.hashicorp.com | |
# Install Vault helm chart | |
helm install vault-release vault --namespace vault -f values.yaml | |
# Expose Vault service locally | |
kubectl port-forward --namespace vault svc/vault 8200:8200 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment