services.kubernetes.addonManager.bootstrapAddons
NixOS option
Bootstrap addons are like regular addons, but they are applied with cluster-admin rights. They are applied at addon-manager startup only.
type: attribute set of (attribute set)Default
{ }Example
declared in: nixos/modules/services/cluster/kubernetes/addon-manager.nixView source on NixOS/nixpkgs →{
"my-service" = {
"apiVersion" = "v1";
"kind" = "Service";
"metadata" = {
"name" = "my-service";
"namespace" = "default";
};
"spec" = { ... };
};
}