manusa / actions-setup-minikube

Set up your GitHub Actions workflow with a specific version of Minikube and Kuberentes
Apache License 2.0
62 stars 26 forks source link

Helm available ? #38

Closed testillano closed 3 years ago

testillano commented 3 years ago

I run this workflow and seemed to me that helm was available:

Run helm version
WARNING: Kubernetes configuration file is group-readable. This is insecure. Location: /home/runner/.kube/config
WARNING: Kubernetes configuration file is world-readable. This is insecure. Location: /home/runner/.kube/config
version.BuildInfo{Version:"v3.5.3", GitCommit:"041ce5a2c17a58be0fcd5f5e16fb3e7e95fea622", GitTreeState:"dirty", GoVersion:"go1.15.8"}

Is this provided by github ? (sorry but I'm new with github actions and i didn't see nothing related to helm within your action source code). If not: Could helm be available for installation here ? It would be a useful setup (docker, kubectl, minikube, helm) for component testing.

BRs

manusa commented 3 years ago

Helm is provided by GitHub in its virtual environment (at least for Ubuntu)

(same as kubectl and other command-line tools cc: @jonathanvila)

testillano commented 3 years ago

thank u