9bee573989
Change-Id: Ib956dc170fa5b9dbd73cc6f99c96b445f889c7e3
12 lines
548 B
Bash
12 lines
548 B
Bash
#!/bin/bash
|
|
echo "Master install script"
|
|
|
|
wget https://opendev.org/nebulous/sal-scripts/raw/branch/master/k8s/install-kube-u22-wg.sh && chmod +x ./install-kube-u22-wg.sh && ./install-kube-u22-wg.sh
|
|
|
|
echo "Installing Helm..."
|
|
sudo -H -u ubuntu bash -c ' 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'
|
|
# Add KubeVela Helm repository and update
|
|
|
|
sudo -H -u ubuntu bash -c 'curl -fsSl https://kubevela.io/script/install.sh | bash'
|
|
echo "Configuration complete."
|