kubectl apply
all
Manage applications through files defining Kubernetes resources. Create and update resources in a cluster.
More info →Options (2)
-f, --filenamebooleanApply a configuration to a resource by file name
Example:
kubectl apply {{[-f|--filename]}} {{path/to/file}}-k, --kustomizebooleanApply a configuration to a resource from `kustomization.yaml` in a directory
Example:
kubectl apply {{[-k|--kustomize]}} {{path/to/directory}}Examples (6)
Apply a configuration to a resource by file name
kubectl apply [-f|--filename] path/to/fileApply a configuration to a resource from `kustomization.yaml` in a directory
kubectl apply [-k|--kustomize] path/to/directoryApply a configuration to a resource by `stdin`
cat pod.json | kubectl apply [-f|--filename] -Edit the latest last-applied-configuration annotations of resources from the default editor
kubectl apply edit-last-applied [-f|--filename] path/to/fileSet the latest last-applied-configuration annotations by setting it to match the contents of a file
kubectl apply set-last-applied [-f|--filename] path/to/fileView the latest last-applied-configuration annotations by type/name or file
kubectl apply view-last-applied [-f|--filename] path/to/filemade by @shridhargupta | data from tldr-pages