Login
Remember
Register
Ask a Question
Outline the steps to deploy additional scheduler on a Kubernetes cluster (not GKE)
0
votes
asked
Aug 4, 2023
in
Kubernetes K8s
by
SakshiSharma
Outline the steps to deploy additional scheduler on a Kubernetes cluster (not GKE)
kube
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 4, 2023
by
SakshiSharma
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
...