Skip to content

Kubernetes

Khaled Hikmat edited this page Jun 6, 2021 · 3 revisions

Deploy to the default namespace. Make sure to update the env variables in deployment.yml for your environment:

kubectl apply -f k8s/functions/deployment.yml
kubectl apply -f k8s/functions/service.yml
kubectl get all

Validate:

kubectl logs replicaset.apps/goqur-functions-deployment-replace-with-your-own --tail 100

Undeploy:

kubectl delete -f k8s/functions/service.yml
kubectl delete -f k8s/functions/deployment.yml
kubectl get all
Clone this wiki locally