calicoctl replace
This sections describes the calicoctl replace
command.
Read the calicoctl command line interface user reference for a full list of calicoctl commands.
Note: The available actions for a specific resource type may be limited based on the datastore used for Calico (etcdv3 / Kubernetes API). Please refer to the Resources section for details about each resource type.
Displaying the help text for ‘calicoctl replace’ command
Run calicoctl replace --help
to display the following help menu for the
command.
Usage:
calicoctl replace --filename=<FILENAME> [--config=<CONFIG>] [--namespace=<NS>]
Examples:
# Replace a policy using the data in policy.yaml.
calicoctl replace -f ./policy.yaml
# Replace a policy based on the JSON passed into stdin.
cat policy.json | calicoctl replace -f -
Options:
-h --help Show this screen.
-f --filename=<FILENAME> Filename to use to replace the resource. If set
to "-" loads from stdin.
-c --config=<CONFIG> Path to the file containing connection
configuration in YAML or JSON format.
[default: /etc/calico/calicoctl.cfg]
-n --namespace=<NS> Namespace of the resource.
Only applicable to NetworkPolicy and WorkloadEndpoint.
Uses the default namespace if not specified.
Description:
The replace command is used to replace a set of resources by filename or
stdin. JSON and YAML formats are accepted.
Valid resource types are:
* bgpConfiguration
* bgpPeer
* felixConfiguration
* globalNetworkPolicy
* hostEndpoint
* ipPool
* networkPolicy
* node
* profile
* workloadEndpoint
Attempting to replace a resource that does not exist is treated as a
terminating error.
The output of the command indicates how many resources were successfully
replaced, and the error reason if an error occurred.
The resources are replaced in the order they are specified. In the event of
a failure replacing a specific resource it is possible to work out which
resource failed based on the number of resources successfully replaced.
When replacing a resource, the complete resource spec must be provided, it is
not sufficient to supply only the fields that are being updated.
Examples
# Replace a set of resources (of mixed type) using the data in resources.yaml.
# Results indicate that 8 resources were successfully replaced.
$ calicoctl replace -f ./resources.yaml
Successfully replaced 8 resource(s)
# Replace a policy based on the JSON passed into stdin.
# Results indicate the policy does not exist.
$ cat policy.json | calicoctl replace -f -
Failed to replace any 'policy' resources: resource does not exist: Policy(name=dbPolicy)
Options
-f --filename=<FILENAME> Filename to use to replace the resource. If set
to "-" loads from stdin.
General options
-c --config=<CONFIG> Path to the file containing connection
configuration in YAML or JSON format.
[default: /etc/calico/calicoctl.cfg]
See also
- Resources for details on all valid resources, including file format and schema
- NetworkPolicy for details on the Calico selector-based policy model
- calicoctl configuration for details on configuring
calicoctl
to access the Calico datastore.