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

[Question] Whether the k8s Headless service supports namespaces #3400

Open
dagehuifei opened this issue Aug 20, 2024 · 1 comment · May be fixed by #3407
Open

[Question] Whether the k8s Headless service supports namespaces #3400

dagehuifei opened this issue Aug 20, 2024 · 1 comment · May be fixed by #3407
Labels
question Further information is requested

Comments

@dagehuifei
Copy link

how to set namespace in k8s headless service registry and discovery ?

@dagehuifei dagehuifei added the question Further information is requested label Aug 20, 2024
@dagehuifei
Copy link
Author

// NewRegistry is used to initialize the Registry
func NewRegistry(clientSet *kubernetes.Clientset, namespace string) Registry {
informerFactory := informers.NewSharedInformerFactoryWithOptions(clientSet, time.Minute
10, informers.WithNamespace(namespace))
podInformer := informerFactory.Core().V1().Pods().Informer()
podLister := informerFactory.Core().V1().Pods().Lister()
return &Registry{
clientSet: clientSet,
informerFactory: informerFactory,
podInformer: podInformer,
podLister: podLister,
stopCh: make(chan struct{}),
}
}

@dagehuifei dagehuifei linked a pull request Aug 25, 2024 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant