Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

allow to only watch certain namespaces #167

Merged
merged 1 commit into from
May 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,14 @@ the Wave container.
It might also increase latency during the time of the sync.
Do not set this unless you encounter bugs (and in that case please tell us).

#### Limit Namespaces

You can limit Wave to only watch certain namespaces:

```
--namespaces=your-namespace,other-namespace
```

## Quick Start

If you haven't yet got Wave running on your cluster, see
Expand Down
6 changes: 5 additions & 1 deletion cmd/manager/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ import (
"sigs.k8s.io/controller-runtime/pkg/cache"

"github.com/wave-k8s/wave/pkg/apis"
"github.com/wave-k8s/wave/pkg/core"

"github.com/wave-k8s/wave/pkg/controller"
"github.com/wave-k8s/wave/pkg/controller/daemonset"
"github.com/wave-k8s/wave/pkg/controller/deployment"
Expand All @@ -47,6 +49,7 @@ var (
syncPeriod = flag.Duration("sync-period", 10*time.Hour, "Reconcile sync period")
showVersion = flag.Bool("version", false, "Show version and exit")
enableWebhooks = flag.Bool("enable-webhooks", false, "Enable webhooks")
namespaces = flag.String("namespaces", "", "Comma-separated list of namespaces to watch. Defaults to all namespaces.")
setupLog = ctrl.Log.WithName("setup")
)

Expand Down Expand Up @@ -86,7 +89,8 @@ func main() {
LeaderElectionID: *leaderElectionID,
LeaderElectionNamespace: *leaderElectionNamespace,
Cache: cache.Options{
SyncPeriod: syncPeriod,
SyncPeriod: syncPeriod,
DefaultNamespaces: core.BuildCacheDefaultNamespaces(*namespaces),
},
})
if err != nil {
Expand Down
4 changes: 4 additions & 0 deletions pkg/controller/daemonset/daemonset_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ import (
corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/types"
"k8s.io/client-go/kubernetes/scheme"
"sigs.k8s.io/controller-runtime/pkg/cache"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/manager"
"sigs.k8s.io/controller-runtime/pkg/metrics"
Expand Down Expand Up @@ -100,6 +101,9 @@ var _ = Describe("DaemonSet controller Suite", func() {
Port: t.WebhookInstallOptions.LocalServingPort,
CertDir: t.WebhookInstallOptions.LocalServingCertDir,
}),
Cache: cache.Options{
DefaultNamespaces: core.BuildCacheDefaultNamespaces(""),
},
})
Expect(err).NotTo(HaveOccurred())
var cerr error
Expand Down
4 changes: 4 additions & 0 deletions pkg/controller/deployment/deployment_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import (
"context"
"time"

"sigs.k8s.io/controller-runtime/pkg/cache"
metricsserver "sigs.k8s.io/controller-runtime/pkg/metrics/server"

. "github.com/onsi/ginkgo/v2"
Expand Down Expand Up @@ -107,6 +108,9 @@ var _ = Describe("Deployment controller Suite", func() {
Port: t.WebhookInstallOptions.LocalServingPort,
CertDir: t.WebhookInstallOptions.LocalServingCertDir,
}),
Cache: cache.Options{
DefaultNamespaces: core.BuildCacheDefaultNamespaces(""),
},
})
Expect(err).NotTo(HaveOccurred())
var cerr error
Expand Down
4 changes: 4 additions & 0 deletions pkg/controller/statefulset/statefulset_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import (
"context"
"time"

"sigs.k8s.io/controller-runtime/pkg/cache"
metricsserver "sigs.k8s.io/controller-runtime/pkg/metrics/server"

. "github.com/onsi/ginkgo/v2"
Expand Down Expand Up @@ -101,6 +102,9 @@ var _ = Describe("StatefulSet controller Suite", func() {
Port: t.WebhookInstallOptions.LocalServingPort,
CertDir: t.WebhookInstallOptions.LocalServingCertDir,
}),
Cache: cache.Options{
DefaultNamespaces: core.BuildCacheDefaultNamespaces(""),
},
})
Expect(err).NotTo(HaveOccurred())

Expand Down
36 changes: 36 additions & 0 deletions pkg/core/namespaces.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
/*
Copyright 2018 Pusher Ltd. and Wave Contributors

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package core

import (
"strings"

"sigs.k8s.io/controller-runtime/pkg/cache"
)

// BuildCacheDefaultNamespaces builds a cache config to watch namespaces
func BuildCacheDefaultNamespaces(namespaces string) map[string]cache.Config {
if namespaces == "" {
// Default: All namespaces
return nil
}
defaultNamespaces := make(map[string]cache.Config)
for _, namespace := range strings.Split(namespaces, ",") {
defaultNamespaces[namespace] = cache.Config{}
}
return defaultNamespaces
}
45 changes: 45 additions & 0 deletions pkg/core/namespaces_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
/*
Copyright 2018 Pusher Ltd. and Wave Contributors

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package core

import (
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
"sigs.k8s.io/controller-runtime/pkg/cache"
)

var _ = Describe("Wave Namespace Suite", func() {
Context("BuildCacheDefaultNamespaces", func() {
It("Returns an empty config for an empty string", func() {
Expect(BuildCacheDefaultNamespaces("")).To(Equal(map[string]cache.Config(nil)))
})

It("Returns a single entry for one namespace", func() {
Expect(BuildCacheDefaultNamespaces("test")).To(Equal(map[string]cache.Config{
"test": {},
}))
})

It("Returns a multiple entries for a list of namespaces", func() {
Expect(BuildCacheDefaultNamespaces("test,ns1,ns2")).To(Equal(map[string]cache.Config{
"test": {},
"ns1": {},
"ns2": {},
}))
})
})
})
Loading