Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 19 additions & 5 deletions ibm_catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -266,8 +266,8 @@
},
{
"key": "use_existing_resource_group",
"type": "string",
"default_value": "false",
"type": "boolean",
"default_value": false,
"description": "Setting to `true` will treat the `resource_group_name` as an existing resource group. Setting `false` will provision a new resource group based on the value in `resource_group_name`.",
"required": false
},
Expand Down Expand Up @@ -314,6 +314,20 @@
"description": "Set to `true` to automatically run the CI pipeline."
},
{
"key": "use_app_repo_for_cd_deploy",
"type": "boolean",
"default_value": true,
"description": "Set to `true` to use the CI sample application repository as the deployment repository in the CD pipeline. This will be set in the pipeline config integration.",
"required": false
},
{
"key": "force_create_standard_api_key",
"type": "boolean",
"default_value": false,
"description": "Set to `true` to force create a standard api key. By default the generated apikey will be a service api key. It is recommended to use a Git Token when using the service api key. In the case where the user has been invited to an account and that user not the account owner, during toolchain creation the default compliance repositories will be created in that user's account and the service api will not have access to those repositories. In this case a Git Token for the repositories is required. See `repo_git_token_secret_name` for more details. The alternative is to set `force_create_standard_api_key` to `true` to create a standard api key.",
"required": false
},
{
"key": "create_git_token",
"required": false,
"type": "boolean",
Expand All @@ -337,7 +351,7 @@
{
"key": "custom_app_repo_blind_connection",
"type": "string",
"default_value": "false",
"default_value": "",
"description": "Setting this value to `true` means the server is not addressable on the public internet. IBM Cloud will not be able to validate the connection details you provide. Certain functionality that requires API access to the git server will be disabled. Delivery pipeline will only work using a private worker that has network access to the git server.",
"required": false
},
Expand Down Expand Up @@ -831,8 +845,8 @@
},
{
"key": "use_existing_resource_group",
"type": "string",
"default_value": "false",
"type": "boolean",
"default_value": false,
"description": "Setting to `true` will treat the `resource_group_name` as an existing resource group. Setting `false` will provision a new resource group based on the value in `resource_group_name`.",
"required": false
},
Expand Down
4 changes: 2 additions & 2 deletions kubernetes/stack_definition.json
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,9 @@
{
"name": "use_existing_resource_group",
"required": false,
"type": "string",
"type": "boolean",
"hidden": false,
"default": ""
"default": false
},
{
"name": "registry_namespace",
Expand Down
18 changes: 15 additions & 3 deletions stack_definition.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
{
"name": "use_existing_resource_group",
"required": false,
"type": "string",
"type": "boolean",
"hidden": false,
"default": ""
"default": false
},
{
"name": "registry_namespace",
Expand Down Expand Up @@ -202,6 +202,14 @@
"default": "",
"custom_config": {}
},
{
"name": "use_app_repo_for_cd_deploy",
"required": false,
"type": "boolean",
"hidden": false,
"default": false,
"custom_config": {}
},
{
"name": "custom_app_repo_git_token_secret_value",
"required": false,
Expand Down Expand Up @@ -255,7 +263,7 @@
"required": false,
"type": "string",
"hidden": false,
"default": "false",
"default": "",
"custom_config": {}
},
{
Expand Down Expand Up @@ -794,6 +802,10 @@
"name": "create_git_token",
"value": "ref:../../inputs/create_git_token"
},
{
"name": "use_app_repo_for_cd_deploy",
"value": "ref:../../inputs/use_app_repo_for_cd_deploy"
},
{
"name": "force_create_standard_api_key",
"value": "ref:../../inputs/force_create_standard_api_key"
Expand Down