Skip to content

Commit fa1e323

Browse files
committed
fix readme
1 parent 1989253 commit fa1e323

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,32 +7,32 @@
77
The openmcp bootstrapper is a command line tool that is able to set up an openmcp landscape initially and to update existing openmcp landscapes with new versions of the openmcp project.
88

99
Supported commands:
10-
* `ocmTransfer`: Transfers the specified OCM component version from the source location to the destination location.
10+
* `ocmTransfer`: Transfers the specified OCM component version from the source location to the target location.
1111

1212
### `ocmTransfer`
1313

14-
The `ocmTransfer` command is used to transfer an OCM component version from a source location to a destination location.
14+
The `ocmTransfer` command is used to transfer an OCM component version from a source location to a target location.
1515
The `ocmTransfer` requires the following parameters:
1616
* `source`: The source location of the OCM component version to be transferred.
17-
* `destination`: The destination location where the OCM component version should be transferred to.
17+
* `target`: The target location where the OCM component version should be transferred to.
1818

1919
Optional parameters:
2020
* `--config`: Path to the OCM configuration file.
2121

2222
```shell
23-
bootstrapper ocmTransfer --source <source-location> --destination <destination-location> --config <path-to-ocm-config>
23+
openmcp-bootstrapper ocmTransfer <source-location> <target-location> --config <path-to-ocm-config>
2424
```
2525

2626
This command internally calls the OCM cli with the following command and arguments:
2727

2828
```shell
29-
ocm transfer componentversion --recursive --copy-resources --copy-sources <source-location> <destination-location> --config <path-to-ocm-config>
29+
ocm --config <path-to-ocm-config> transfer componentversion --recursive --copy-resources --copy-sources <source-location> <destination-location>
3030
```
3131

3232
Example:
3333
```shell
34-
ocmTransfer ghcr.io/openmcp-project/components//github.com/openmcp-project/openmcp:v0.0.11 ./ctf
35-
ocmTransfer ghcr.io/openmcp-project/components//github.com/openmcp-project/openmcp:v0.0.11 ghcr.io/my-github-user
34+
openmcp-bootstrapper ocmTransfer ghcr.io/openmcp-project/components//github.com/openmcp-project/openmcp:v0.0.11 ./ctf
35+
openmcp-bootstrapper ocmTransfer ghcr.io/openmcp-project/components//github.com/openmcp-project/openmcp:v0.0.11 ghcr.io/my-github-user
3636
```
3737

3838

0 commit comments

Comments
 (0)