Format repo
This commit is contained in:
parent
3169149045
commit
8160b9da0b
37 changed files with 643 additions and 392 deletions
|
@ -1,4 +1,9 @@
|
|||
{ lib, globals, config, ... }: {
|
||||
{
|
||||
lib,
|
||||
globals,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
options.traefik.enable = lib.mkEnableOption "traefik";
|
||||
|
||||
config = lib.mkIf config.traefik.enable {
|
||||
|
@ -8,7 +13,7 @@
|
|||
# Override Traefik's service with a static load balancer IP.
|
||||
# Create endpoint for HTTPS on port 444.
|
||||
# Allow external name services for servers in LAN.
|
||||
spec.valuesContent = lib.generators.toYAML { } {
|
||||
spec.valuesContent = lib.generators.toYAML {} {
|
||||
providers.kubernetesIngress.allowExternalNameServices = true;
|
||||
service.loadBalancerIP = globals.traefikIPv4;
|
||||
|
||||
|
@ -23,7 +28,7 @@
|
|||
enabled = true;
|
||||
options = "";
|
||||
certResolver = "";
|
||||
domains = [ ];
|
||||
domains = [];
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue