From ec5b55881a2890e89b3e331c58e4f30107cd879a Mon Sep 17 00:00:00 2001 From: Kenneth Bambridge Date: Sat, 5 Jan 2019 15:38:30 -0800 Subject: [PATCH] Replace '~' with $HOME to prevent strikethrough on MD render --- docs/helm/helm.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/helm/helm.md b/docs/helm/helm.md index 177be7e88..884a582a4 100644 --- a/docs/helm/helm.md +++ b/docs/helm/helm.md @@ -21,11 +21,11 @@ Common actions from this point include: - helm list: list releases of charts Environment: - $HELM_HOME set an alternative location for Helm files. By default, these are stored in ~/.helm + $HELM_HOME set an alternative location for Helm files. By default, these are stored in $HOME/.helm $HELM_HOST set an alternative Tiller host. The format is host:port $HELM_NO_PLUGINS disable plugins. Set HELM_NO_PLUGINS=1 to disable plugins. $TILLER_NAMESPACE set an alternative Tiller namespace (default "kube-system") - $KUBECONFIG set an alternative Kubernetes configuration file (default "~/.kube/config") + $KUBECONFIG set an alternative Kubernetes configuration file (default "$HOME/.kube/config") $HELM_TLS_CA_CERT path to TLS CA certificate used to verify the Helm client and Tiller server certificates (default "$HELM_HOME/ca.pem") $HELM_TLS_CERT path to TLS client certificate file for authenticating to Tiller (default "$HELM_HOME/cert.pem") $HELM_TLS_KEY path to TLS client key file for authenticating to Tiller (default "$HELM_HOME/key.pem")