Helm
version: "3"
build:
steps:
- type: apt-get
packages: ["curl"]
- type: command
command: |
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
chmod 700 get_helm.sh
./get_helm.sh
rm get_helm.sh
user: devzero
Last updated