Skip to content

Commit 3f449e3

Browse files
authored
Fixing Leader election failure (pravega#396)
* Initial changes for leader election fix Signed-off-by: anishakj <[email protected]> * Fixed compilation issue Signed-off-by: anishakj <[email protected]> * Adding the missing files Signed-off-by: anishakj <[email protected]> * Finding namespace using operator-sdk utility Signed-off-by: anishakj <[email protected]> * Changing the variable name Signed-off-by: anishakj <[email protected]> * Removing unused dependency Signed-off-by: anishakj <[email protected]> * updating cluster roles Signed-off-by: anishakj <[email protected]> * updating go.sum Signed-off-by: anishakj <[email protected]>
1 parent 575c49b commit 3f449e3

File tree

7 files changed

+353
-26
lines changed

7 files changed

+353
-26
lines changed

charts/zookeeper-operator/templates/clusterrole.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ rules:
1616
- apiGroups:
1717
- ""
1818
resources:
19+
- nodes
1920
- pods
2021
- services
2122
- endpoints

cmd/manager/main.go

+12-2
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ import (
2121
"sigs.k8s.io/controller-runtime/pkg/manager/signals"
2222

2323
"github.com/operator-framework/operator-sdk/pkg/k8sutil"
24-
"github.com/operator-framework/operator-sdk/pkg/leader"
2524
sdkVersion "github.com/operator-framework/operator-sdk/version"
2625
"github.com/pravega/zookeeper-operator/pkg/apis"
2726
"github.com/pravega/zookeeper-operator/pkg/controller"
27+
"github.com/pravega/zookeeper-operator/pkg/utils"
2828
"github.com/pravega/zookeeper-operator/pkg/version"
2929
_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
3030
_ "k8s.io/client-go/plugin/pkg/client/auth/oidc"
@@ -93,8 +93,18 @@ func main() {
9393
os.Exit(1)
9494
}
9595

96+
operatorNs, err := k8sutil.GetOperatorNamespace()
97+
if err != nil {
98+
log.Error(err, "failed to get operator namespace")
99+
os.Exit(1)
100+
}
101+
96102
// Become the leader before proceeding
97-
leader.Become(context.TODO(), "zookeeper-operator-lock")
103+
err = utils.BecomeLeader(context.TODO(), cfg, "zookeeper-operator-lock", operatorNs)
104+
if err != nil {
105+
log.Error(err, "")
106+
os.Exit(1)
107+
}
98108

99109
// Create a new Cmd to provide shared dependencies and start components
100110
mgr, err := manager.New(cfg, manager.Options{NewCache: managerWatchCache})

deploy/all_ns/rbac.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ rules:
1919
- apiGroups:
2020
- ""
2121
resources:
22+
- nodes
2223
- pods
2324
- services
2425
- endpoints

go.mod

+5-12
Original file line numberDiff line numberDiff line change
@@ -14,40 +14,32 @@ require (
1414
github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32
1515
github.com/go-logr/logr v0.4.0
1616
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
17-
github.com/google/go-cmp v0.5.6 // indirect
1817
github.com/google/uuid v1.1.5 // indirect
19-
github.com/googleapis/gnostic v0.5.5 // indirect
2018
github.com/gorilla/mux v1.8.0 // indirect
21-
github.com/imdario/mergo v0.3.12 // indirect
22-
github.com/json-iterator/go v1.1.11 // indirect
2319
github.com/onsi/ginkgo v1.16.4
2420
github.com/onsi/gomega v1.14.0
25-
github.com/operator-framework/api v0.3.25 // indirect
21+
github.com/operator-framework/operator-lib v0.7.0
2622
github.com/operator-framework/operator-registry v1.13.9 // indirect
2723
github.com/operator-framework/operator-sdk v0.19.4
2824
github.com/pborman/uuid v1.2.1 // indirect
2925
github.com/pkg/errors v0.9.1
3026
github.com/rogpeppe/go-internal v1.5.2 // indirect
3127
github.com/samuel/go-zookeeper v0.0.0-20201211165307-7117e9ea2414
3228
github.com/sirupsen/logrus v1.7.1
33-
github.com/spf13/cobra v1.1.3 // indirect
3429
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 // indirect
3530
golang.org/x/net v0.0.0-20210716203947-853a461950ff // indirect
3631
golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914 // indirect
3732
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
3833
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b // indirect
3934
golang.org/x/time v0.0.0-20210611083556-38a9dc6acbc6 // indirect
4035
golang.org/x/tools v0.1.5 // indirect
41-
google.golang.org/appengine v1.6.7 // indirect
4236
google.golang.org/genproto v0.0.0-20210716133855-ce7ef5c701ea // indirect
43-
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
44-
k8s.io/api v0.19.13
45-
k8s.io/apiextensions-apiserver v0.19.13 // indirect
46-
k8s.io/apimachinery v0.19.13
37+
k8s.io/api v0.21.1
38+
k8s.io/apimachinery v0.21.1
4739
k8s.io/client-go v12.0.0+incompatible
4840
k8s.io/kube-openapi v0.0.0-20210527164424-3c818078ee3d // indirect
4941
k8s.io/utils v0.0.0-20210709001253-0e1f9d693477 // indirect
50-
sigs.k8s.io/controller-runtime v0.6.5
42+
sigs.k8s.io/controller-runtime v0.9.0
5143
)
5244

5345
replace (
@@ -100,4 +92,5 @@ replace (
10092
k8s.io/sample-cli-plugin => k8s.io/sample-cli-plugin v0.19.13
10193

10294
k8s.io/sample-controller => k8s.io/sample-controller v0.19.13
95+
sigs.k8s.io/controller-runtime => sigs.k8s.io/controller-runtime v0.6.5
10396
)

0 commit comments

Comments
 (0)