Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 615 Bytes

kubernetes.md

File metadata and controls

32 lines (21 loc) · 615 Bytes

Kubernetes

Minikube

Using GCP

# If running on GCP you mush run the following before deploying to the cluster
kubectl create clusterrolebinding cluster-admin-binding \
  --clusterrole cluster-admin \
  --user $(gcloud config get-value account)

# or from root directory

make gcp-admin

Deployment

Utilize the included Makefile or the following commands as needed

kubectl apply -f deploy/common/
kubectl apply -f deploy/nginx-ingress/ -R
kubectl apply -f deploy/cosmos/ -R
kubectl apply -f deploy/iris/ -R
kubectl apply -f deploy/kava/ -R
kubectl apply -f deploy/regen/ -R