kubernetes: fix 404 links to documentation
This commit is contained in:
parent
3c0daa19e2
commit
e22d072c64
@ -279,7 +279,7 @@ in {
|
|||||||
tokenAuthFile = mkOption {
|
tokenAuthFile = mkOption {
|
||||||
description = ''
|
description = ''
|
||||||
Kubernetes apiserver token authentication file. See
|
Kubernetes apiserver token authentication file. See
|
||||||
<link xlink:href="https://kubernetes.io/docs/admin/authentication.html"/>
|
<link xlink:href="https://kubernetes.io/docs/reference/access-authn-authz/authentication"/>
|
||||||
'';
|
'';
|
||||||
default = null;
|
default = null;
|
||||||
type = types.nullOr types.path;
|
type = types.nullOr types.path;
|
||||||
@ -288,7 +288,7 @@ in {
|
|||||||
basicAuthFile = mkOption {
|
basicAuthFile = mkOption {
|
||||||
description = ''
|
description = ''
|
||||||
Kubernetes apiserver basic authentication file. See
|
Kubernetes apiserver basic authentication file. See
|
||||||
<link xlink:href="https://kubernetes.io/docs/admin/authentication.html"/>
|
<link xlink:href="https://kubernetes.io/docs/reference/access-authn-authz/authentication"/>
|
||||||
'';
|
'';
|
||||||
default = pkgs.writeText "users" ''
|
default = pkgs.writeText "users" ''
|
||||||
kubernetes,admin,0
|
kubernetes,admin,0
|
||||||
@ -299,7 +299,7 @@ in {
|
|||||||
authorizationMode = mkOption {
|
authorizationMode = mkOption {
|
||||||
description = ''
|
description = ''
|
||||||
Kubernetes apiserver authorization mode (AlwaysAllow/AlwaysDeny/ABAC/RBAC). See
|
Kubernetes apiserver authorization mode (AlwaysAllow/AlwaysDeny/ABAC/RBAC). See
|
||||||
<link xlink:href="https://kubernetes.io/docs/admin/authorization.html"/>
|
<link xlink:href="https://kubernetes.io/docs/reference/access-authn-authz/authorization/"/>
|
||||||
'';
|
'';
|
||||||
default = ["RBAC" "Node"];
|
default = ["RBAC" "Node"];
|
||||||
type = types.listOf (types.enum ["AlwaysAllow" "AlwaysDeny" "ABAC" "RBAC" "Node"]);
|
type = types.listOf (types.enum ["AlwaysAllow" "AlwaysDeny" "ABAC" "RBAC" "Node"]);
|
||||||
@ -308,7 +308,7 @@ in {
|
|||||||
authorizationPolicy = mkOption {
|
authorizationPolicy = mkOption {
|
||||||
description = ''
|
description = ''
|
||||||
Kubernetes apiserver authorization policy file. See
|
Kubernetes apiserver authorization policy file. See
|
||||||
<link xlink:href="https://kubernetes.io/docs/admin/authorization.html"/>
|
<link xlink:href="https://kubernetes.io/docs/reference/access-authn-authz/authorization/"/>
|
||||||
'';
|
'';
|
||||||
default = [];
|
default = [];
|
||||||
type = types.listOf types.attrs;
|
type = types.listOf types.attrs;
|
||||||
@ -332,7 +332,7 @@ in {
|
|||||||
runtimeConfig = mkOption {
|
runtimeConfig = mkOption {
|
||||||
description = ''
|
description = ''
|
||||||
Api runtime configuration. See
|
Api runtime configuration. See
|
||||||
<link xlink:href="https://kubernetes.io/docs/admin/cluster-management.html"/>
|
<link xlink:href="https://kubernetes.io/docs/tasks/administer-cluster/cluster-management/"/>
|
||||||
'';
|
'';
|
||||||
default = "authentication.k8s.io/v1beta1=true";
|
default = "authentication.k8s.io/v1beta1=true";
|
||||||
example = "api/all=false,api/v1=true";
|
example = "api/all=false,api/v1=true";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user