lol

kubernetes: fix 404 links to documentation

authored by

Geoffrey Huntley and committed by
Robin Gloster
e22d072c 3c0daa19

+5 -5
+5 -5
nixos/modules/services/cluster/kubernetes/default.nix
··· 279 tokenAuthFile = mkOption { 280 description = '' 281 Kubernetes apiserver token authentication file. See 282 - <link xlink:href="https://kubernetes.io/docs/admin/authentication.html"/> 283 ''; 284 default = null; 285 type = types.nullOr types.path; ··· 288 basicAuthFile = mkOption { 289 description = '' 290 Kubernetes apiserver basic authentication file. See 291 - <link xlink:href="https://kubernetes.io/docs/admin/authentication.html"/> 292 ''; 293 default = pkgs.writeText "users" '' 294 kubernetes,admin,0 ··· 299 authorizationMode = mkOption { 300 description = '' 301 Kubernetes apiserver authorization mode (AlwaysAllow/AlwaysDeny/ABAC/RBAC). See 302 - <link xlink:href="https://kubernetes.io/docs/admin/authorization.html"/> 303 ''; 304 default = ["RBAC" "Node"]; 305 type = types.listOf (types.enum ["AlwaysAllow" "AlwaysDeny" "ABAC" "RBAC" "Node"]); ··· 308 authorizationPolicy = mkOption { 309 description = '' 310 Kubernetes apiserver authorization policy file. See 311 - <link xlink:href="https://kubernetes.io/docs/admin/authorization.html"/> 312 ''; 313 default = []; 314 type = types.listOf types.attrs; ··· 332 runtimeConfig = mkOption { 333 description = '' 334 Api runtime configuration. See 335 - <link xlink:href="https://kubernetes.io/docs/admin/cluster-management.html"/> 336 ''; 337 default = "authentication.k8s.io/v1beta1=true"; 338 example = "api/all=false,api/v1=true";
··· 279 tokenAuthFile = mkOption { 280 description = '' 281 Kubernetes apiserver token authentication file. See 282 + <link xlink:href="https://kubernetes.io/docs/reference/access-authn-authz/authentication"/> 283 ''; 284 default = null; 285 type = types.nullOr types.path; ··· 288 basicAuthFile = mkOption { 289 description = '' 290 Kubernetes apiserver basic authentication file. See 291 + <link xlink:href="https://kubernetes.io/docs/reference/access-authn-authz/authentication"/> 292 ''; 293 default = pkgs.writeText "users" '' 294 kubernetes,admin,0 ··· 299 authorizationMode = mkOption { 300 description = '' 301 Kubernetes apiserver authorization mode (AlwaysAllow/AlwaysDeny/ABAC/RBAC). See 302 + <link xlink:href="https://kubernetes.io/docs/reference/access-authn-authz/authorization/"/> 303 ''; 304 default = ["RBAC" "Node"]; 305 type = types.listOf (types.enum ["AlwaysAllow" "AlwaysDeny" "ABAC" "RBAC" "Node"]); ··· 308 authorizationPolicy = mkOption { 309 description = '' 310 Kubernetes apiserver authorization policy file. See 311 + <link xlink:href="https://kubernetes.io/docs/reference/access-authn-authz/authorization/"/> 312 ''; 313 default = []; 314 type = types.listOf types.attrs; ··· 332 runtimeConfig = mkOption { 333 description = '' 334 Api runtime configuration. See 335 + <link xlink:href="https://kubernetes.io/docs/tasks/administer-cluster/cluster-management/"/> 336 ''; 337 default = "authentication.k8s.io/v1beta1=true"; 338 example = "api/all=false,api/v1=true";