-
Notifications
You must be signed in to change notification settings - Fork 0
/
run.sh
29 lines (23 loc) · 844 Bytes
/
run.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/bash
if [[ -n ${KUBERNETES_TOKEN} ]]; then
KUBERNETES_TOKEN=$KUBERNETES_TOKEN
fi
if [[ -n ${KUBERNETES_SERVER} ]]; then
KUBERNETES_SERVER=$KUBERNETES_SERVER
fi
if [[ -n ${KUBERNETES_CERT} ]]; then
KUBERNETES_CERT=${KUBERNETES_CERT}
fi
kubectl config set-credentials default --token="${KUBERNETES_TOKEN}"
if [[ -n ${KUBERNETES_CERT} ]]; then
echo "${KUBERNETES_CERT}" | base64 -d >ca.crt
kubectl config set-cluster default --server="${KUBERNETES_SERVER}" --certificate-authority=ca.crt
else
echo "WARNING: Using insecure connection to cluster"
kubectl config set-cluster default --server="${KUBERNETES_SERVER}" --insecure-skip-tls-verify=true
fi
kubectl config set-context default --cluster=default --user=default
kubectl config use-context default
if [[ -n ${PLUGIN_EXECUTE} ]]; then
bash -c "${PLUGIN_EXECUTE}"
fi