-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
50 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
type: object | ||
required: | ||
- image_name | ||
- tag | ||
- registry | ||
properties: | ||
image_name: | ||
type: string | ||
description: | | ||
The image name pattern differs according to chosen container registry provider: | ||
* `ECR`: `repository` | ||
* `SCALEWAY_CR`: `namespace/image` | ||
* `DOCKER_HUB`: `image` or `repository/image` | ||
* `PUBLIC_ECR`: `registry_alias/repository` | ||
tag: | ||
type: string | ||
description: tag of the image container | ||
registry_id: | ||
type: string | ||
description: tag of the image container | ||
registry: | ||
$ref: "./ContainerRegistryProviderDetailsResponse.yaml" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
type: object | ||
properties: | ||
docker: | ||
type: object | ||
properties: | ||
dockerfile_path: | ||
type: string | ||
description: The path of the associated Dockerfile. Only if you are using build_mode = DOCKER | ||
nullable: true | ||
git_repository: | ||
$ref: '../ApplicationGitRepositoryResponse.yaml' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
type: object | ||
properties: | ||
image: | ||
$ref: '../ContainerSource.yaml' |