diff --git a/content/en/docs/score implementation/score-compose/cli.md b/content/en/docs/score implementation/score-compose/cli.md index b3f5437..ae250b2 100644 --- a/content/en/docs/score implementation/score-compose/cli.md +++ b/content/en/docs/score implementation/score-compose/cli.md @@ -49,7 +49,13 @@ score-compose init --project score-compose2 #### `--provisioners` | `-p` -Loads additional provisoners from a remote url. May be specified multiple times. Supports http://host/file, https://host/file, git-ssh://git@host/repo.git/file, and git-https://host/repo.git/file formats. +Loads additional provisoners from a remote url. May be specified multiple times. Supports the following formats: + +- `http://host/file` +- `https://host/file` +- `git-ssh://git@host/repo.git/file` +- `git-https://host/repo.git/file` +- `oci://[registry/][namespace/]repository[:tag|@digest][#file]` ```bash score-compose init --provisioners https://raw.githubusercontent.com/user/repo/main/example.yaml diff --git a/content/en/docs/score implementation/score-k8s/cli.md b/content/en/docs/score implementation/score-k8s/cli.md index ff4a0e3..572a953 100644 --- a/content/en/docs/score implementation/score-k8s/cli.md +++ b/content/en/docs/score implementation/score-k8s/cli.md @@ -39,6 +39,20 @@ Disables the generation of the sample Score file if you already have a Score fil score-k8s init --no-sample ``` +#### `--provisioners` + +Loads additional provisoners from a remote url. May be specified multiple times. Supports the following formats: + +- `http://host/file` +- `https://host/file` +- `git-ssh://git@host/repo.git/file` +- `git-https://host/repo.git/file` +- `oci://[registry/][namespace/]repository[:tag|@digest][#file]` + +```bash +score-k8s init --provisioners https://raw.githubusercontent.com/user/repo/main/example.yaml +``` + #### `--help` | `-h` Displays help information for `init`, providing a short description of the command along with examples and compatible flags.