| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This repo backs a Medium post which outlines how one could run a kubernetes job using the python client library
kubectl apply -f ./rbac
We need to fetch credentials to access Kubernetes cluster
Set the HOST_URL environmental variable to the result (https://x.x.x.x) from running:
kubectl cluster-info | grep 'Kubernetes master' | awk '/http/ {print $NF}'
Set the CACERT environmental variable to the result from running:
kubectl -n default get secrets job-manager-token- xxxx -o jsonpath="{['data']['ca\.crt']}"
Set the TOKEN environmental variable to the result from running:
kubectl get secrets job-manager-token- xxxx -o jsonpath={.data.token} | base64 -d
| Back | FazBrowse Home | New Git URL |