Format repo
This commit is contained in:
parent
3169149045
commit
8160b9da0b
37 changed files with 643 additions and 392 deletions
|
@ -1,4 +1,10 @@
|
|||
{ config, lib, nixhelm, system, ... }: {
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
nixhelm,
|
||||
system,
|
||||
...
|
||||
}: {
|
||||
options.bootstrap-kube-system.enable = lib.mkEnableOption "bootstrap-kube-system";
|
||||
|
||||
config = lib.mkIf config.bootstrap-kube-system.enable {
|
||||
|
@ -29,10 +35,12 @@
|
|||
server = "https://acme-v02.api.letsencrypt.org/directory";
|
||||
email = "pim@kunis.nl";
|
||||
privateKeySecretRef.name = "letsencrypt-private-key";
|
||||
solvers = [{
|
||||
selector = { };
|
||||
http01.ingress.class = "traefik";
|
||||
}];
|
||||
solvers = [
|
||||
{
|
||||
selector = {};
|
||||
http01.ingress.class = "traefik";
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue