15 lines
363 B
Nix
15 lines
363 B
Nix
{
|
|
services.k3s.autoDeployCharts = {
|
|
cert-manager = {
|
|
name = "cert-manager";
|
|
version = "v1.20.0";
|
|
repo = "https://charts.jetstack.io";
|
|
hash = "sha256-Hxomj9FkLXbQuf0WKq7ckZc6gbh9nlfA//JGAkzNKtQ=";
|
|
createNamespace = true;
|
|
targetNamespace = "cert-manager";
|
|
values = {
|
|
installCRDs = true;
|
|
};
|
|
};
|
|
};
|
|
} |