-
Notifications
You must be signed in to change notification settings - Fork 314
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
Helm is not pre-installed in AKS clusters #4
Comments
Good call out that should be quick for us to ship soon. |
I was kinda surprised to see helm isn't installed by default, and I'm having trouble setting it up myself |
@k1-hedayati what problem you having? once I got the credentials I ran helm command and tiller was install on the cluster. |
@rspaulino my issue was because of #2, I've created a new cluster on uk and I could install helm manually, thanks |
@k1-hedayati Yes, I must say I'm not happy with this release it's been buggy but my biggest concern is that this is the cloud, it shouldn't be not capacity issues since allocating servers should be almost automatically but I know it's beta. |
We just provisioned two new clusters and both of them we were able to install
tiller logs state:
|
Helm 3 does away with Tiller, so this is no longer needed. I think this issue can be closed. |
Completely agree. Cluster-wide Tiller in But you don't need a Tiller for Helm 2 too. Just use something similar to this script: #!/usr/bin/env bash
# Runs Tiller locally, then executes any Helm command
# E.g. no need to install Tiller server within Kubernetes cluster
# Examples:
# helm-serverless ls
# helm-serverless version
tiller -storage=secret &> /tmp/tiller.log & tiller_pid="$!"
function finish {
kill "$tiller_pid"
}
trap finish EXIT
export HELM_HOST=":44134"
helm $@
helm_exit_code=$?
exit $helm_exit_code |
So, helm & tiller are rolled into AKS - when Helm 3 is released, we will examine removing the server side tiller bits. |
https://docs.microsoft.com/en-us/azure/aks/kubernetes-helm
Base on the documentation it state that Helm is pre-installed in AKS clusters but when I run
I get an error and when I look at the subsystem installed in k8s Tiller isn't listed.
The text was updated successfully, but these errors were encountered: