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