
Product
Rust Support in Socket Is Now Generally Available
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.
Kubernetes Cluster Federation (KubeFed for short) allows you to coordinate the configuration of multiple Kubernetes clusters from a single set of APIs in a hosting cluster. KubeFed aims to provide mechanisms for expressing which clusters should have their configuration managed and what that configuration should be. The mechanisms that KubeFed provides are intentionally low-level, and intended to be foundational for more complex multicluster use cases such as deploying multi-geo applications and disaster recovery.
KubeFed is currently beta.

KubeFed is configured with two types of information:
Propagation refers to the mechanism that distributes resources to federated clusters.
Type configuration has three fundamental concepts:
These three abstractions provide a concise representation of a resource intended to appear in multiple clusters. They encode the minimum information required for propagation and are well-suited to serve as the glue between any given propagation mechanism and higher-order behaviors like policy-based placement and dynamic scheduling.
These fundamental concepts provide building blocks that can be used by higher-level APIs:
| Feature | Maturity | Feature Gate | Default |
|---|---|---|---|
| Push propagation of arbitrary types to remote clusters | Alpha | PushReconciler | true |
CLI utility (kubefedctl) | Alpha | ||
| Generate KubeFed APIs without writing code | Alpha | ||
| Replica Scheduling Preferences | Alpha | SchedulerPreferences | true |
git clone https://github.com/kubernetes-sigs/kubefed.git
kind create cluster
make deploy.kind
You now have a Kubernetes cluster with kubefed up and running. The cluster has been joined to itself and you can test federation of resources like this:
KubeFedCluster exists and is ready:
kubectl -n kube-federation-system get kubefedcluster
If you're on macOS the cluster will not immediately show as ready. You need to change the API endpoint's URL first:
./scripts/fix-joined-kind-clusters.sh
kubectl create ns federate-me
./bin/kubefedctl federate ns federate-me
ConfigMap to be federated:
kubectl -n federate-me create cm my-cm
ConfigMap:
./bin/kubefedctl -n federate-me federate configmap my-cm
FederatedConfigMap has been created and propagates properly:
kubectl -n federate-me describe federatedconfigmap my-cm
Take a look at our user guide if you are interested in using KubeFed.
Take a look at our development guide if you are interested in contributing.
Refer to the contributing guidelines if you would like to contribute to KubeFed.
KubeFed is sponsored by SIG Multicluster and it uses the same communication channels as SIG multicluster.
Participation in the Kubernetes community is governed by the Kubernetes Code of Conduct.
FAQs
Unknown package
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.

Security News
Chrome 144 introduces the Temporal API, a modern approach to date and time handling designed to fix long-standing issues with JavaScript’s Date object.

Research
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.