Is it possible to sync leader election in two containers in the same pod?

225 Views Asked by At

I have one pod with 2 containers

1 . default scheduler

 containers:
    - name: my-scheduler
      image: >-
        build-releases-external.common.cdn.repositories.cloud.sap/google_containers/kube-scheduler-amd64:v1.19.0-rc.1
      command:
        - /usr/local/bin/kube-scheduler
        - '--scheduler-name=my-scheduler'
        - '--config=/home/config/config.yaml'

config.yaml
leaderElection:
  leaderElect: true
  resourceName: my-scheduler
  resourceNamespace: ns
  1. extender controller bases on kube builder
  - name: myExtender
      image: >-
        myimage.....
      command:
        - /usr/local/bin/devspace-scheduler-extender
        - '--commonConfig=my-config.yaml'
        - '--enable-leader-election=true'

I want that the leader election will be to the same containers in the same pod.I saw that when the deployment was 2 than I got 2 pods but the leader election were in different pods How I can sync them to be in the same pod ?

0

There are 0 best solutions below