From 92a559e80c85037f8d6919b63482d875e3adb4ad Mon Sep 17 00:00:00 2001 From: Enno Richter Date: Tue, 2 Jul 2024 11:40:44 +0200 Subject: [PATCH] workaround for https://github.com/hall/kubenix/issues/52 --- modules/generated/v1.29.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/generated/v1.29.nix b/modules/generated/v1.29.nix index 8f8fb47..a2d50e3 100644 --- a/modules/generated/v1.29.nix +++ b/modules/generated/v1.29.nix @@ -5794,7 +5794,7 @@ let }; "ports" = mkOption { description = "List of ports to expose from the container. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Modifying this array with strategic merge patch may corrupt the data. For more information See https://github.com/kubernetes/kubernetes/issues/108255. Cannot be updated."; - type = (types.nullOr (coerceAttrsOfSubmodulesToListByKey "io.k8s.api.core.v1.ContainerPort" "name" [ "containerPort" "protocol" ])); + type = (types.nullOr (coerceAttrsOfSubmodulesToListByKey "io.k8s.api.core.v1.ContainerPort" "name" [ "containerPort" ])); apply = attrsToList; }; "readinessProbe" = mkOption {