Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,15 @@
"description": "Context path",
"type": "string"
},
"githubPersonalAccessToken": {
"description": "One time Github PAT to configure github environment",
"type": "string",
"x-ms-mutability": [
"create",
"update"
],
"x-ms-secret": true
},
"image": {
"description": "Image name",
"type": "string"
Expand Down Expand Up @@ -398,6 +407,14 @@
],
"x-ms-secret": true
},
"kind": {
"description": "Kind of auth github does for deploying the template",
"type": "string",
"x-ms-mutability": [
"create",
"update"
]
},
"subscriptionId": {
"description": "Subscription Id.",
"type": "string"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,19 @@
"branch": "master",
"githubActionConfiguration": {
"registryInfo": {
"registryUrl": "xwang971reg.azurecr.io",
"registryUserName": "xwang971reg",
"registryPassword": "<registrypassword>"
"registryUrl": "test-registry.azurecr.io",
"registryUserName": "test-registry",
"registryPassword": "<registrypassword>",
"kind": "feaderated"
},
"azureCredentials": {
"clientId": "<clientid>",
"clientSecret": "<clientsecret>",
"tenantId": "<tenantid>"
},
"contextPath": "./",
"image": "image/tag"
"image": "image/tag",
"githubPersonalAccessToken": "test"
}
}
}
Expand All @@ -39,8 +41,9 @@
"branch": "master",
"githubActionConfiguration": {
"registryInfo": {
"registryUrl": "xwang971reg.azurecr.io",
"registryUserName": "xwang971reg"
"registryUrl": "test-registry.azurecr.io",
"registryUserName": "testreg",
"kind": "feaderated"
},
"contextPath": "./",
"image": "image/tag"
Expand All @@ -62,8 +65,9 @@
"branch": "master",
"githubActionConfiguration": {
"registryInfo": {
"registryUrl": "xwang971reg.azurecr.io",
"registryUserName": "xwang971reg"
"registryUrl": "test-registry.azurecr.io",
"registryUserName": "test-registry",
"kind": "feaderated"
},
"contextPath": "./",
"image": "image/tag"
Expand Down