1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
% podman-farm-update 1
## NAME
podman\-farm\-update - Update an existing farm
## SYNOPSIS
**podman farm update** [*options*] *name*
## DESCRIPTION
Update a farm by either adding connections to it, removing connections from it, or setting it as the new
default farm.
## OPTIONS
#### **--add**, **-a**
Add new connections to an existing farm. Multiple connections can be added at once.
#### **--default**, **-d**
Set the current farm as the default.
#### **--remove**, **-r**
Remove one or more connections from an existing farm.
## EXAMPLE
Add two connections to specified farm:
```
$ podman farm update --add f35,f38 farm1
```
Add connection to specified farm:
```
$ podman farm update --remove f35 farm1
```
Change specified farm to be default:
```
$ podman farm update --default farm2
```
## SEE ALSO
**[podman(1)](podman.1.md)**, **[podman-farm(1)](podman-farm.1.md)**
## HISTORY
July 2023, Originally compiled by Urvashi Mohnani (umohnani at redhat dot com)s
|