1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-09 09:26:54 +00:00
kyverno/documentation/kyverno-cli.md

207 lines
5.7 KiB
Markdown
Raw Normal View History

<small>*[documentation](/README.md#documentation) / kyverno-cli*</small>
2020-02-17 10:20:02 +05:30
2020-02-19 18:50:03 -08:00
# Kyverno CLI
2020-02-19 21:47:15 +05:30
The Kyverno Command Line Interface (CLI) is designed to validate policies and test the behavior of applying policies to resources before adding the policy to a cluster. It can be used as a kubectl plugin and as a standalone CLI.
2020-02-17 10:20:02 +05:30
2020-02-19 19:13:05 -08:00
## Build the CLI
2020-02-19 18:50:03 -08:00
2020-02-19 19:24:11 -08:00
You can build the CLI binary locally, then move the binary into a directory in your PATH.
2020-02-19 19:13:05 -08:00
```bash
git clone https://github.com/nirmata/kyverno.git
cd github.com/nirmata/kyverno
make cli
2020-02-19 19:24:55 -08:00
mv ./cmd/cli/kubectl-kyverno/kyverno /usr/local/bin/kyverno
2020-02-19 19:13:05 -08:00
```
2020-02-17 10:20:02 +05:30
You can also use [Krew](https://github.com/kubernetes-sigs/krew)
```bash
# Install kyverno using krew plugin manager
kubectl krew install kyverno
#example
2020-07-14 13:42:31 -07:00
kubectl kyverno version
```
## Install via AUR (archlinux)
You can install the kyverno cli via your favourite AUR helper (e.g. [yay](https://github.com/Jguer/yay))
```
yay -S kyverno-git
```
2020-02-17 10:20:02 +05:30
## Commands
#### Version
2020-02-19 18:50:03 -08:00
2020-02-17 10:20:02 +05:30
Prints the version of kyverno used by the CLI.
Example:
2020-02-17 10:20:02 +05:30
```
2020-02-19 18:50:03 -08:00
kyverno version
2020-02-17 10:20:02 +05:30
```
#### Validate
Validates a policy, can validate multiple policy resource description files or even an entire folder containing policy resource description
files. Currently supports files with resource description in yaml.
2020-02-17 10:20:02 +05:30
Example:
```
2020-02-19 18:50:03 -08:00
kyverno validate /path/to/policy1.yaml /path/to/policy2.yaml /path/to/folderFullOfPolicies
2020-02-17 10:20:02 +05:30
```
Use the -o <yaml/json> flag to display the mutated policy.
Example:
```
kyverno validate /path/to/policy1.yaml /path/to/policy2.yaml /path/to/folderFullOfPolicies -o yaml
```
2020-08-31 19:32:00 +05:30
Policy can also be validated with CRDs. Use -c flag to pass the CRD, can pass multiple CRD files or even an entire folder containin CRDs.
Example:
```
kyverno validate /path/to/policy1.yaml -c /path/to/crd.yaml -c /path/to/folderFullOfCRDs
```
2020-02-17 10:20:02 +05:30
#### Apply
2020-02-19 21:47:15 +05:30
Applies policies on resources, and supports applying multiple policies on multiple resources in a single command.
Also supports applying the given policies to an entire cluster. The current kubectl context will be used to access the cluster.
Displays mutate results to stdout, by default. Use the -o <path> flag to save mutated resources to a file or directory.
2020-02-17 10:20:02 +05:30
Apply to a resource:
```
2020-02-19 18:50:03 -08:00
kyverno apply /path/to/policy.yaml --resource /path/to/resource.yaml
2020-02-17 10:20:02 +05:30
```
2020-02-19 18:50:03 -08:00
2020-02-19 21:47:15 +05:30
Apply to all matching resources in a cluster:
```
2020-02-19 18:50:03 -08:00
kyverno apply /path/to/policy.yaml --cluster > policy-results.txt
2020-02-17 10:20:02 +05:30
```
2020-02-19 18:50:03 -08:00
Apply multiple policies to multiple resources:
```
2020-02-19 18:50:03 -08:00
kyverno apply /path/to/policy1.yaml /path/to/folderFullOfPolicies --resource /path/to/resource1.yaml --resource /path/to/resource2.yaml --cluster
2020-02-17 10:20:02 +05:30
```
2020-02-19 18:50:03 -08:00
Saving the mutated resource in a file/directory:
```
kyverno apply /path/to/policy.yaml --resource /path/to/resource.yaml -o <file path/directory path>
```
2020-08-11 09:55:02 +05:30
Apply policy with variables:
Use --set flag to pass the values for variables in a policy while applying on a resource.
```
kyverno apply /path/to/policy.yaml --resource /path/to/resource.yaml --set <variable1>=<value1>,<variable2>=<value2>
```
2020-08-12 15:25:11 +05:30
Use --values_file for applying multiple policies on multiple resources and pass a file containing variables and its values.
```
2020-08-18 11:46:44 +05:30
kyverno apply /path/to/policy1.yaml /path/to/policy2.yaml --resource /path/to/resource1.yaml --resource /path/to/resource2.yaml -f /path/to/value.yaml
2020-08-12 15:25:11 +05:30
```
Format of value.yaml :
```
policies:
- name: <policy1 name>
resources:
- name: <resource1 name>
values:
<variable1 in policy1>: <value>
<variable2 in policy1>: <value>
- name: <resource2 name>
values:
<variable1 in policy1>: <value>
<variable2 in policy1>: <value>
- name: <policy2 name>
resources:
- name: <resource1 name>
values:
<variable1 in policy2>: <value>
<variable2 in policy2>: <value>
- name: <resource2 name>
values:
<variable1 in policy2>: <value>
<variable2 in policy2>: <value>
```
2020-08-11 09:55:02 +05:30
2020-08-18 11:46:44 +05:30
Example:
Policy file(add_network_policy.yaml):
```
apiVersion: kyverno.io/v1
kind: ClusterPolicy
metadata:
name: add-networkpolicy
annotations:
policies.kyverno.io/category: Workload Management
policies.kyverno.io/description: By default, Kubernetes allows communications across
all pods within a cluster. Network policies and, a CNI that supports network policies,
must be used to restrict communinications. A default NetworkPolicy should be configured
for each namespace to default deny all ingress traffic to the pods in the namespace.
Application teams can then configure additional NetworkPolicy resources to allow
desired traffic to application pods from select sources.
spec:
rules:
- name: default-deny-ingress
match:
resources:
kinds:
- Namespace
name: "*"
generate:
kind: NetworkPolicy
name: default-deny-ingress
namespace: "{{request.object.metadata.name}}"
synchronize : true
data:
spec:
# select all pods in the namespace
podSelector: {}
policyTypes:
- Ingress
```
Resource file(required_default_network_policy.yaml) :
```
kind: Namespace
apiVersion: v1
metadata:
name: "devtest"
```
Applying policy on resource using set/-s flag:
```
kyverno apply /path/to/add_network_policy.yaml --resource /path/to/required_default_network_policy.yaml -s request.object.metadata.name=devtest
```
Applying policy on resource using --values_file/-f flag:
yaml file with variables(value.yaml) :
```
policies:
- name: default-deny-ingress
resources:
- name: devtest
values:
request.namespace: devtest
```
```
kyverno apply /path/to/add_network_policy.yaml --resource /path/to/required_default_network_policy.yaml -f /path/to/value.yaml
```
2020-02-19 18:50:03 -08:00
<small>*Read Next >> [Sample Policies](/samples/README.md)*</small>