File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3232
3333# Install Helm (if not already installed)
3434if ! command -v helm & > /dev/null; then
35- curl -fsSL https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash > /dev/null 2>&1
35+ curl -fsSL https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
3636fi
3737
3838# Login to Azure
3939az login --service-principal \
4040 -u ${AZURE_CLIENT_ID} \
4141 -p ${AZURE_CLIENT_SECRET} \
42- --tenant ${AZURE_TENANT_ID} > /dev/null 2>&1
42+ --tenant ${AZURE_TENANT_ID}
4343
4444# Get AKS credentials
4545az aks get-credentials \
4646 --resource-group ${AZURE_RESOURCE_GROUP} \
4747 --name ${AZURE_CLUSTER_NAME} \
48- --overwrite-existing > /dev/null 2>&1
48+ --overwrite-existing
4949
5050helm upgrade hankers-frontend " $SCRIPT_DIR /helm-chart" \
5151 --install \
You can’t perform that action at this time.
0 commit comments