Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

Commit

Permalink
EVEREST-495 fix cluster role binding for everest-admin
Browse files Browse the repository at this point in the history
  • Loading branch information
recharte committed Feb 7, 2024
1 parent feaeb3a commit 8f2fee5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/install/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ func (o *Install) provisionEverest(ctx context.Context) error {
}

o.l.Info("Updating cluster role bindings for everest-admin")
if err := o.kubeClient.UpdateClusterRoleBinding(ctx, everestServiceAccountClusterRoleBinding, o.config.Namespaces); err != nil {
if err := o.kubeClient.UpdateClusterRoleBinding(ctx, everestServiceAccountClusterRoleBinding, SystemNamespace); err != nil {

Check failure on line 278 in pkg/install/install.go

View workflow job for this annotation

GitHub Actions / Tests (1.21.x)

cannot use SystemNamespace (untyped string constant "percona-everest") as []string value in argument to o.kubeClient.UpdateClusterRoleBinding

Check failure on line 278 in pkg/install/install.go

View workflow job for this annotation

GitHub Actions / CLI Integration Tests

cannot use SystemNamespace (untyped string constant "percona-everest") as []string value in argument to o.kubeClient.UpdateClusterRoleBinding

Check failure on line 278 in pkg/install/install.go

View workflow job for this annotation

GitHub Actions / CLI tests (test-pxc-operator) / CLI test-pxc-operator

cannot use SystemNamespace (untyped string constant "percona-everest") as []string value in argument to o.kubeClient.UpdateClusterRoleBinding

Check failure on line 278 in pkg/install/install.go

View workflow job for this annotation

GitHub Actions / Check (1.21.x, false)

cannot use SystemNamespace (untyped string constant "percona-everest") as []string value in argument to o.kubeClient.UpdateClusterRoleBinding (typecheck)

Check failure on line 278 in pkg/install/install.go

View workflow job for this annotation

GitHub Actions / Check (1.21.x, false)

cannot use SystemNamespace (untyped string constant "percona-everest") as []string value in argument to o.kubeClient.UpdateClusterRoleBinding) (typecheck)

Check failure on line 278 in pkg/install/install.go

View workflow job for this annotation

GitHub Actions / Check (1.21.x, false)

cannot use SystemNamespace (untyped string constant "percona-everest") as []string value in argument to o.kubeClient.UpdateClusterRoleBinding) (typecheck)

Check failure on line 278 in pkg/install/install.go

View workflow job for this annotation

GitHub Actions / Check (1.21.x, false)

cannot use SystemNamespace (untyped string constant "percona-everest") as []string value in argument to o.kubeClient.UpdateClusterRoleBinding) (typecheck)

Check failure on line 278 in pkg/install/install.go

View workflow job for this annotation

GitHub Actions / CLI tests (test-mongo-operator) / CLI test-mongo-operator

cannot use SystemNamespace (untyped string constant "percona-everest") as []string value in argument to o.kubeClient.UpdateClusterRoleBinding

Check failure on line 278 in pkg/install/install.go

View workflow job for this annotation

GitHub Actions / CLI tests (test-all-operators) / CLI test-all-operators

cannot use SystemNamespace (untyped string constant "percona-everest") as []string value in argument to o.kubeClient.UpdateClusterRoleBinding

Check failure on line 278 in pkg/install/install.go

View workflow job for this annotation

GitHub Actions / CLI tests (test-pg-operator) / CLI test-pg-operator

cannot use SystemNamespace (untyped string constant "percona-everest") as []string value in argument to o.kubeClient.UpdateClusterRoleBinding
return err
}

Expand Down

0 comments on commit 8f2fee5

Please sign in to comment.