0 votes
in Kubernetes K8s by
Outline the steps to deploy additional scheduler on a Kubernetes cluster (not GKE)

1 Answer

0 votes
by
Package the new scheduler in a docker image

   Put that image in a registry

   Create a deploymentment file with type: deployment and component: scheduler (in namespace kube-system)

   Deploy the the scheduler with apply -f scheduleryaml command
...