diff --git a/main/404.html b/main/404.html index cb01a33f..ae8b0588 100644 --- a/main/404.html +++ b/main/404.html @@ -1 +1 @@ -
Package v1alpha1 contains API Schema definitions for the policy v1alpha1 API group
ValidatingPolicy
¶Appears in:
ValidatingPolicy is the resource that contains the policy definition.
Field | Type | Required | Inline | Description |
---|---|---|---|---|
apiVersion | string | json.kyverno.io/v1alpha1 | ||
kind | string | ValidatingPolicy | ||
metadata | meta/v1.ObjectMeta | Standard object's metadata. | ||
spec | ValidatingPolicySpec | Policy spec. |
ValidatingPolicyList
¶ValidatingPolicyList is a list of ValidatingPolicy instances.
Field | Type | Required | Inline | Description |
---|---|---|---|---|
apiVersion | string | json.kyverno.io/v1alpha1 | ||
kind | string | ValidatingPolicyList | ||
metadata | meta/v1.ListMeta | No description provided. | ||
items | []ValidatingPolicy | No description provided. |
Any
¶Appears in:
Any can be any type.
Field | Type | Required | Inline | Description |
---|---|---|---|---|
Value | interface{} | Value contains the value of the Any object. |
Assert
¶Appears in:
Assert defines collections of assertions.
Field | Type | Required | Inline | Description |
---|---|---|---|---|
any | []Assertion | Any allows specifying assertions which will be ORed. | ||
all | []Assertion | All allows specifying assertions which will be ANDed. |
Assertion
¶Appears in:
Assertion contains an assertion tree associated with a message.
Field | Type | Required | Inline | Description |
---|---|---|---|---|
message | string | Message is the message associated message. | ||
check | Any | Check is the assertion check definition. |
ContextEntry
¶Appears in:
ContextEntry adds variables and data sources to a rule context.
Field | Type | Required | Inline | Description |
---|---|---|---|---|
name | string | Name is the entry name. | ||
variable | Any | Variable defines an arbitrary variable. |
Match
¶Appears in:
Match defines collections of assertion trees.
Field | Type | Required | Inline | Description |
---|---|---|---|---|
any | []Any | Any allows specifying assertion trees which will be ORed. | ||
all | []Any | All allows specifying assertion trees which will be ANDed. |
ValidatingPolicySpec
¶Appears in:
ValidatingPolicySpec contains the policy spec.
Field | Type | Required | Inline | Description |
---|---|---|---|---|
rules | []ValidatingRule | Rules is a list of ValidatingRule instances. |
ValidatingRule
¶Appears in:
ValidatingRule defines a validating rule.
Field | Type | Required | Inline | Description |
---|---|---|---|---|
name | string | Name is a label to identify the rule, It must be unique within the policy. | ||
context | []ContextEntry | Context defines variables and data sources that can be used during rule execution. | ||
match | Match | Match defines when this policy rule should be applied. | ||
exclude | Match | Exclude defines when this policy rule should not be applied. | ||
identifier | string | Identifier declares a JMESPath expression to extract a name from the payload. | ||
assert | Assert | Assert is used to validate matching resources. |
Package v1alpha1 contains API Schema definitions for the policy v1alpha1 API group
ValidatingPolicy
¶Appears in:
ValidatingPolicy is the resource that contains the policy definition.
Field | Type | Required | Inline | Description |
---|---|---|---|---|
apiVersion | string | json.kyverno.io/v1alpha1 | ||
kind | string | ValidatingPolicy | ||
metadata | meta/v1.ObjectMeta | Standard object's metadata. | ||
spec | ValidatingPolicySpec | Policy spec. |
ValidatingPolicyList
¶ValidatingPolicyList is a list of ValidatingPolicy instances.
Field | Type | Required | Inline | Description |
---|---|---|---|---|
apiVersion | string | json.kyverno.io/v1alpha1 | ||
kind | string | ValidatingPolicyList | ||
metadata | meta/v1.ListMeta | No description provided. | ||
items | []ValidatingPolicy | No description provided. |
Any
¶Appears in:
Any can be any type.
Field | Type | Required | Inline | Description |
---|---|---|---|---|
Value | interface{} | Value contains the value of the Any object. |
Assert
¶Appears in:
Assert defines collections of assertions.
Field | Type | Required | Inline | Description |
---|---|---|---|---|
any | []Assertion | Any allows specifying assertions which will be ORed. | ||
all | []Assertion | All allows specifying assertions which will be ANDed. |
Assertion
¶Appears in:
Assertion contains an assertion tree associated with a message.
Field | Type | Required | Inline | Description |
---|---|---|---|---|
message | string | Message is the message associated message. | ||
check | Any | Check is the assertion check definition. |
ContextEntry
¶Appears in:
ContextEntry adds variables and data sources to a rule context.
Field | Type | Required | Inline | Description |
---|---|---|---|---|
name | string | Name is the entry name. | ||
variable | Any | Variable defines an arbitrary variable. |
Match
¶Appears in:
Match defines collections of assertion trees.
Field | Type | Required | Inline | Description |
---|---|---|---|---|
any | []Any | Any allows specifying assertion trees which will be ORed. | ||
all | []Any | All allows specifying assertion trees which will be ANDed. |
ValidatingPolicySpec
¶Appears in:
ValidatingPolicySpec contains the policy spec.
Field | Type | Required | Inline | Description |
---|---|---|---|---|
rules | []ValidatingRule | Rules is a list of ValidatingRule instances. |
ValidatingRule
¶Appears in:
ValidatingRule defines a validating rule.
Field | Type | Required | Inline | Description |
---|---|---|---|---|
name | string | Name is a label to identify the rule, It must be unique within the policy. | ||
context | []ContextEntry | Context defines variables and data sources that can be used during rule execution. | ||
match | Match | Match defines when this policy rule should be applied. | ||
exclude | Match | Exclude defines when this policy rule should not be applied. | ||
identifier | string | Identifier declares a JMESPath expression to extract a name from the payload. | ||
assert | Assert | Assert is used to validate matching resources. |
The kyverno-json
policy catalog contains curated policies to be reused.
You can share your policies with the community by opening a pull request here.
The kyverno-json
policy catalog contains curated policies to be reused.
You can share your policies with the community by opening a pull request here.
This Policy ensures that port 22 is not exposed in Dockerfile.
kubectl apply -f https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/dockerfile/dockerfile-deny-expose-22.yaml
+ Dockerfile expose port 22 not allowed - kyverno-json kyverno-json Dockerfile expose port 22 not allowed
dockerfile Dockerfile expose port 22 not allowed¶
Description¶
This Policy ensures that port 22 is not exposed in Dockerfile.
Install¶
In cluster¶
kubectl apply -f https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/dockerfile/dockerfile-deny-expose-22.yaml
Download locally¶
curl -O https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/dockerfile/dockerfile-deny-expose-22.yaml
Manifest¶
apiVersion: json.kyverno.io/v1alpha1
kind: ValidatingPolicy
diff --git a/main/catalog/policies/dockerfile/dockerfile-deny-latest-image/index.html b/main/catalog/policies/dockerfile/dockerfile-deny-latest-image/index.html
index e8b971b9..8d66533e 100644
--- a/main/catalog/policies/dockerfile/dockerfile-deny-latest-image/index.html
+++ b/main/catalog/policies/dockerfile/dockerfile-deny-latest-image/index.html
@@ -1,4 +1,4 @@
- Dockerfile latest image tag not allowed - kyverno-json kyverno-json Dockerfile latest image tag not allowed
dockerfile Dockerfile latest image tag not allowed¶
Description¶
This Policy ensures that no image uses the latest tag in Dockerfile.
Install¶
In cluster¶
kubectl apply -f https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/dockerfile/dockerfile-deny-latest-image.yaml
+ Dockerfile latest image tag not allowed - kyverno-json kyverno-json Dockerfile latest image tag not allowed
dockerfile Dockerfile latest image tag not allowed¶
Description¶
This Policy ensures that no image uses the latest tag in Dockerfile.
Install¶
In cluster¶
kubectl apply -f https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/dockerfile/dockerfile-deny-latest-image.yaml
Download locally¶
curl -O https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/dockerfile/dockerfile-deny-latest-image.yaml
Manifest¶
apiVersion: json.kyverno.io/v1alpha1
kind: ValidatingPolicy
diff --git a/main/catalog/policies/dockerfile/dockerfile-disallow-apt/index.html b/main/catalog/policies/dockerfile/dockerfile-disallow-apt/index.html
index f4d03e90..167e1676 100644
--- a/main/catalog/policies/dockerfile/dockerfile-disallow-apt/index.html
+++ b/main/catalog/policies/dockerfile/dockerfile-disallow-apt/index.html
@@ -1,4 +1,4 @@
- Ensure apt is not used in Dockerfile - kyverno-json kyverno-json Ensure apt is not used in Dockerfile
dockerfile Ensure apt is not used in Dockerfile¶
Description¶
This Policy ensures that apt isnt used but apt-get can be used as apt interface is less stable than apt-get and so this preferred.
Install¶
In cluster¶
kubectl apply -f https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/dockerfile/dockerfile-disallow-apt.yaml
+ Ensure apt is not used in Dockerfile - kyverno-json kyverno-json Ensure apt is not used in Dockerfile
dockerfile Ensure apt is not used in Dockerfile¶
Description¶
This Policy ensures that apt isnt used but apt-get can be used as apt interface is less stable than apt-get and so this preferred.
Install¶
In cluster¶
kubectl apply -f https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/dockerfile/dockerfile-disallow-apt.yaml
Download locally¶
curl -O https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/dockerfile/dockerfile-disallow-apt.yaml
Manifest¶
apiVersion: json.kyverno.io/v1alpha1
kind: ValidatingPolicy
diff --git a/main/catalog/policies/dockerfile/dockerfile-disallow-last-user-root/index.html b/main/catalog/policies/dockerfile/dockerfile-disallow-last-user-root/index.html
index edee8c18..46680be3 100644
--- a/main/catalog/policies/dockerfile/dockerfile-disallow-last-user-root/index.html
+++ b/main/catalog/policies/dockerfile/dockerfile-disallow-last-user-root/index.html
@@ -1,4 +1,4 @@
- Dockerfile last user is not allowed to be root - kyverno-json kyverno-json Dockerfile last user is not allowed to be root
dockerfile Dockerfile last user is not allowed to be root¶
Description¶
This Policy ensures that last user in Dockerfile is not root.
Install¶
In cluster¶
kubectl apply -f https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/dockerfile/dockerfile-disallow-last-user-root.yaml
+ Dockerfile last user is not allowed to be root - kyverno-json kyverno-json Dockerfile last user is not allowed to be root
dockerfile Dockerfile last user is not allowed to be root¶
Description¶
This Policy ensures that last user in Dockerfile is not root.
Install¶
In cluster¶
kubectl apply -f https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/dockerfile/dockerfile-disallow-last-user-root.yaml
Download locally¶
curl -O https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/dockerfile/dockerfile-disallow-last-user-root.yaml
Manifest¶
apiVersion: json.kyverno.io/v1alpha1
kind: ValidatingPolicy
diff --git a/main/catalog/policies/dockerfile/dockerfile-disallow-sudo/index.html b/main/catalog/policies/dockerfile/dockerfile-disallow-sudo/index.html
index 1b4aba12..1493b7a7 100644
--- a/main/catalog/policies/dockerfile/dockerfile-disallow-sudo/index.html
+++ b/main/catalog/policies/dockerfile/dockerfile-disallow-sudo/index.html
@@ -1,4 +1,4 @@
- Ensure sudo is not used in Dockerfile - kyverno-json kyverno-json Ensure sudo is not used in Dockerfile
dockerfile Ensure sudo is not used in Dockerfile¶
Description¶
This Policy ensures that sudo isn’t used.
Install¶
In cluster¶
kubectl apply -f https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/dockerfile/dockerfile-disallow-sudo.yaml
+ Ensure sudo is not used in Dockerfile - kyverno-json kyverno-json Ensure sudo is not used in Dockerfile
dockerfile Ensure sudo is not used in Dockerfile¶
Description¶
This Policy ensures that sudo isn’t used.
Install¶
In cluster¶
kubectl apply -f https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/dockerfile/dockerfile-disallow-sudo.yaml
Download locally¶
curl -O https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/dockerfile/dockerfile-disallow-sudo.yaml
Manifest¶
apiVersion: json.kyverno.io/v1alpha1
kind: ValidatingPolicy
diff --git a/main/catalog/policies/ecs/ecs-cluster-enable-logging/index.html b/main/catalog/policies/ecs/ecs-cluster-enable-logging/index.html
index 1110fad8..80047e15 100644
--- a/main/catalog/policies/ecs/ecs-cluster-enable-logging/index.html
+++ b/main/catalog/policies/ecs/ecs-cluster-enable-logging/index.html
@@ -1,4 +1,4 @@
- ECS cluster enable logging - kyverno-json kyverno-json ECS cluster enable logging
aws aws/ecs ECS cluster enable logging¶
Description¶
This Policy ensures that ECS clusters have logging enabled.
Install¶
In cluster¶
kubectl apply -f https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/ecs/ecs-cluster-enable-logging.yaml
+ ECS cluster enable logging - kyverno-json kyverno-json ECS cluster enable logging
aws aws/ecs ECS cluster enable logging¶
Description¶
This Policy ensures that ECS clusters have logging enabled.
Install¶
In cluster¶
kubectl apply -f https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/ecs/ecs-cluster-enable-logging.yaml
Download locally¶
curl -O https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/ecs/ecs-cluster-enable-logging.yaml
Manifest¶
apiVersion: json.kyverno.io/v1alpha1
kind: ValidatingPolicy
diff --git a/main/catalog/policies/ecs/ecs-cluster-required-container-insights/index.html b/main/catalog/policies/ecs/ecs-cluster-required-container-insights/index.html
index 52dd6636..a0786665 100644
--- a/main/catalog/policies/ecs/ecs-cluster-required-container-insights/index.html
+++ b/main/catalog/policies/ecs/ecs-cluster-required-container-insights/index.html
@@ -1,4 +1,4 @@
- ECS requires container insights - kyverno-json kyverno-json ECS requires container insights
aws aws/ecs ECS requires container insights¶
Description¶
This Policy ensures that ECS clusters have container insights enabled.
Install¶
In cluster¶
kubectl apply -f https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/ecs/ecs-cluster-required-container-insights.yaml
+ ECS requires container insights - kyverno-json kyverno-json ECS requires container insights
aws aws/ecs ECS requires container insights¶
Description¶
This Policy ensures that ECS clusters have container insights enabled.
Install¶
In cluster¶
kubectl apply -f https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/ecs/ecs-cluster-required-container-insights.yaml
Download locally¶
curl -O https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/ecs/ecs-cluster-required-container-insights.yaml
Manifest¶
apiVersion: json.kyverno.io/v1alpha1
kind: ValidatingPolicy
diff --git a/main/catalog/policies/ecs/ecs-service-public-ip/index.html b/main/catalog/policies/ecs/ecs-service-public-ip/index.html
index b885b377..99991841 100644
--- a/main/catalog/policies/ecs/ecs-service-public-ip/index.html
+++ b/main/catalog/policies/ecs/ecs-service-public-ip/index.html
@@ -1,4 +1,4 @@
- ECS public IP - kyverno-json kyverno-json ECS public IP
aws aws/ecs ECS public IP¶
Description¶
This Policy ensures that ECS services do not have public IP addresses assigned to them automatically.
Install¶
In cluster¶
kubectl apply -f https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/ecs/ecs-service-public-ip.yaml
+ ECS public IP - kyverno-json kyverno-json ECS public IP
aws aws/ecs ECS public IP¶
Description¶
This Policy ensures that ECS services do not have public IP addresses assigned to them automatically.
Install¶
In cluster¶
kubectl apply -f https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/ecs/ecs-service-public-ip.yaml
Download locally¶
curl -O https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/ecs/ecs-service-public-ip.yaml
Manifest¶
apiVersion: json.kyverno.io/v1alpha1
kind: ValidatingPolicy
diff --git a/main/catalog/policies/ecs/ecs-service-required-latest-platform-fargate/index.html b/main/catalog/policies/ecs/ecs-service-required-latest-platform-fargate/index.html
index f105d7a9..111b6a3b 100644
--- a/main/catalog/policies/ecs/ecs-service-required-latest-platform-fargate/index.html
+++ b/main/catalog/policies/ecs/ecs-service-required-latest-platform-fargate/index.html
@@ -1,4 +1,4 @@
- ECS require latest platform fargate - kyverno-json kyverno-json ECS require latest platform fargate
aws aws/ecs ECS require latest platform fargate¶
Description¶
This Policy ensures that ECS Fargate services runs on the latest Fargate platform version.
Install¶
In cluster¶
kubectl apply -f https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/ecs/ecs-service-required-latest-platform-fargate.yaml
+ ECS require latest platform fargate - kyverno-json kyverno-json ECS require latest platform fargate
aws aws/ecs ECS require latest platform fargate¶
Description¶
This Policy ensures that ECS Fargate services runs on the latest Fargate platform version.
Install¶
In cluster¶
kubectl apply -f https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/ecs/ecs-service-required-latest-platform-fargate.yaml
Download locally¶
curl -O https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/ecs/ecs-service-required-latest-platform-fargate.yaml
Manifest¶
apiVersion: json.kyverno.io/v1alpha1
kind: ValidatingPolicy
diff --git a/main/catalog/policies/ecs/ecs-task-definition-fs-read-only/index.html b/main/catalog/policies/ecs/ecs-task-definition-fs-read-only/index.html
index f97a3d65..093df5fd 100644
--- a/main/catalog/policies/ecs/ecs-task-definition-fs-read-only/index.html
+++ b/main/catalog/policies/ecs/ecs-task-definition-fs-read-only/index.html
@@ -1,4 +1,4 @@
- ECS require filesystem read only - kyverno-json kyverno-json ECS require filesystem read only
aws aws/ecs ECS require filesystem read only¶
Description¶
This Policy ensures that ECS Fargate services runs on the latest Fargate platform version.
Install¶
In cluster¶
kubectl apply -f https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/ecs/ecs-task-definition-fs-read-only.yaml
+ ECS require filesystem read only - kyverno-json kyverno-json ECS require filesystem read only
aws aws/ecs ECS require filesystem read only¶
Description¶
This Policy ensures that ECS Fargate services runs on the latest Fargate platform version.
Install¶
In cluster¶
kubectl apply -f https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/ecs/ecs-task-definition-fs-read-only.yaml
Download locally¶
curl -O https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/ecs/ecs-task-definition-fs-read-only.yaml
Manifest¶
apiVersion: json.kyverno.io/v1alpha1
kind: ValidatingPolicy
diff --git a/main/catalog/policies/ecs/policy-1/index.html b/main/catalog/policies/ecs/policy-1/index.html
index d12c2454..b994bb6c 100644
--- a/main/catalog/policies/ecs/policy-1/index.html
+++ b/main/catalog/policies/ecs/policy-1/index.html
@@ -1,4 +1,4 @@
- policy-1 - kyverno-json kyverno-json policy-1
policy-1¶
Description¶
None
Install¶
In cluster¶
kubectl apply -f https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/ecs/policy-1.yaml
+ policy-1 - kyverno-json kyverno-json policy-1
policy-1¶
Description¶
None
Install¶
In cluster¶
kubectl apply -f https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/ecs/policy-1.yaml
Download locally¶
curl -O https://raw.githubusercontent.com/kyverno/kyverno-json/main/catalog/ecs/policy-1.yaml
Manifest¶
apiVersion: json.kyverno.io/v1alpha1
kind: ValidatingPolicy
diff --git a/main/cli/commands/kyverno-json/index.html b/main/cli/commands/kyverno-json/index.html
index a604c45a..18678c92 100644
--- a/main/cli/commands/kyverno-json/index.html
+++ b/main/cli/commands/kyverno-json/index.html
@@ -1,3 +1,3 @@
- Kyverno json - kyverno-json kyverno-json Kyverno json
Kyverno json
kyverno-json¶
kyverno-json is a CLI tool to apply policies to json resources.
Synopsis¶
kyverno-json is a CLI tool to apply policies to json resources.
kyverno-json [flags]
+ Kyverno json - kyverno-json kyverno-json Kyverno json
Kyverno json
kyverno-json¶
kyverno-json is a CLI tool to apply policies to json resources.
Synopsis¶
kyverno-json is a CLI tool to apply policies to json resources.
kyverno-json [flags]
Options¶
-h, --help help for kyverno-json
SEE ALSO¶
- kyverno-json completion - Generate the autocompletion script for the specified shell
- kyverno-json docs - Generates reference documentation.
- kyverno-json jp - Provides a command-line interface to JMESPath, enhanced with custom functions.
- kyverno-json playground - playground
- kyverno-json scan - scan
- kyverno-json serve - serve
- kyverno-json version - Print the version informations
\ No newline at end of file
diff --git a/main/cli/commands/kyverno-json_completion/index.html b/main/cli/commands/kyverno-json_completion/index.html
index 43e9cd4f..e6d2dc08 100644
--- a/main/cli/commands/kyverno-json_completion/index.html
+++ b/main/cli/commands/kyverno-json_completion/index.html
@@ -1,2 +1,2 @@
- Kyverno json completion - kyverno-json kyverno-json Kyverno json completion
Kyverno json completion
kyverno-json completion¶
Generate the autocompletion script for the specified shell
Synopsis¶
Generate the autocompletion script for kyverno-json for the specified shell. See each sub-command's help for details on how to use the generated script.
Options¶
-h, --help help for completion
+ Kyverno json completion - kyverno-json kyverno-json Kyverno json completion
Kyverno json completion
kyverno-json completion¶
Generate the autocompletion script for the specified shell
Synopsis¶
Generate the autocompletion script for kyverno-json for the specified shell. See each sub-command's help for details on how to use the generated script.
Options¶
-h, --help help for completion
SEE ALSO¶
- kyverno-json - kyverno-json is a CLI tool to apply policies to json resources.
- kyverno-json completion bash - Generate the autocompletion script for bash
- kyverno-json completion fish - Generate the autocompletion script for fish
- kyverno-json completion powershell - Generate the autocompletion script for powershell
- kyverno-json completion zsh - Generate the autocompletion script for zsh
\ No newline at end of file
diff --git a/main/cli/commands/kyverno-json_completion_bash/index.html b/main/cli/commands/kyverno-json_completion_bash/index.html
index 85ee6a22..1ed7689d 100644
--- a/main/cli/commands/kyverno-json_completion_bash/index.html
+++ b/main/cli/commands/kyverno-json_completion_bash/index.html
@@ -1,4 +1,4 @@
- Kyverno json completion bash - kyverno-json kyverno-json Kyverno json completion bash
Kyverno json completion bash
kyverno-json completion bash¶
Generate the autocompletion script for bash
Synopsis¶
Generate the autocompletion script for the bash shell.
This script depends on the 'bash-completion' package. If it is not installed already, you can install it via your OS's package manager.
To load completions in your current shell session:
source <(kyverno-json completion bash)
+ Kyverno json completion bash - kyverno-json kyverno-json Kyverno json completion bash
Kyverno json completion bash
kyverno-json completion bash¶
Generate the autocompletion script for bash
Synopsis¶
Generate the autocompletion script for the bash shell.
This script depends on the 'bash-completion' package. If it is not installed already, you can install it via your OS's package manager.
To load completions in your current shell session:
source <(kyverno-json completion bash)
To load completions for every new session, execute once:
Linux:¶
kyverno-json completion bash > /etc/bash_completion.d/kyverno-json
macOS:¶
kyverno-json completion bash > $(brew --prefix)/etc/bash_completion.d/kyverno-json
You will need to start a new shell for this setup to take effect.
kyverno-json completion bash
diff --git a/main/cli/commands/kyverno-json_completion_fish/index.html b/main/cli/commands/kyverno-json_completion_fish/index.html
index 93c6bdc2..1f1f7f30 100644
--- a/main/cli/commands/kyverno-json_completion_fish/index.html
+++ b/main/cli/commands/kyverno-json_completion_fish/index.html
@@ -1,4 +1,4 @@
- Kyverno json completion fish - kyverno-json kyverno-json Kyverno json completion fish
Kyverno json completion fish
kyverno-json completion fish¶
Generate the autocompletion script for fish
Synopsis¶
Generate the autocompletion script for the fish shell.
To load completions in your current shell session:
kyverno-json completion fish | source
+ Kyverno json completion fish - kyverno-json kyverno-json Kyverno json completion fish
Kyverno json completion fish
kyverno-json completion fish¶
Generate the autocompletion script for fish
Synopsis¶
Generate the autocompletion script for the fish shell.
To load completions in your current shell session:
kyverno-json completion fish | source
To load completions for every new session, execute once:
kyverno-json completion fish > ~/.config/fish/completions/kyverno-json.fish
You will need to start a new shell for this setup to take effect.
kyverno-json completion fish [flags]
Options¶
-h, --help help for fish
diff --git a/main/cli/commands/kyverno-json_completion_powershell/index.html b/main/cli/commands/kyverno-json_completion_powershell/index.html
index 1103f077..4ad84902 100644
--- a/main/cli/commands/kyverno-json_completion_powershell/index.html
+++ b/main/cli/commands/kyverno-json_completion_powershell/index.html
@@ -1,4 +1,4 @@
- Kyverno json completion powershell - kyverno-json kyverno-json Kyverno json completion powershell
Kyverno json completion powershell
kyverno-json completion powershell¶
Generate the autocompletion script for powershell
Synopsis¶
Generate the autocompletion script for powershell.
To load completions in your current shell session: