Skip to content

Commit

Permalink
added changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jaydestro committed Aug 13, 2021
1 parent 381c5f2 commit 3a5acc3
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
12 changes: 9 additions & 3 deletions azuredeploy.parameters.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,32 @@
"linuxAdminUsername": {
"value": "aksadmin"
},
"uniqueclustername": {
"value": "<cluster-name>"
},
"dnsPrefix": {
"value": "<dns-name>"
},
"sshRSAPublicKey": {
"reference": {
"keyVault": {
"id": "/subscriptions/f9b5da45-54cc-42d3-a58b-87adf6ad27ad/resourceGroups/aksbicep/providers/Microsoft.KeyVault/vaults/aksbicep"
"id": "/subscriptions/<subscription id>/resourceGroups/<resource group>/providers/Microsoft.KeyVault/vaults/<vault name>"
},
"secretName": "sshkey"
}
},
"servicePrincipalClientId": {
"reference": {
"keyVault": {
"id": "/subscriptions/f9b5da45-54cc-42d3-a58b-87adf6ad27ad/resourceGroups/aksbicep/providers/Microsoft.KeyVault/vaults/aksbicep"
"id": "/subscriptions/<subscription id>/resourceGroups/<resource group>/providers/Microsoft.KeyVault/vaults/<vault name>"
},
"secretName": "servicePrincipalClientId"
}
},
"servicePrincipalClientSecret": {
"reference": {
"keyVault": {
"id": "/subscriptions/f9b5da45-54cc-42d3-a58b-87adf6ad27ad/resourceGroups/aksbicep/providers/Microsoft.KeyVault/vaults/aksbicep"
"id": "/subscriptions/<subscription id>/resourceGroups/<resource group>/providers/Microsoft.KeyVault/vaults/<vault name>"
},
"secretName": "clientSecret"
}
Expand Down
Binary file added images/key-vault.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/resource-group.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/vote-app.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions manifests/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: Deployment
metadata:
name: azure-vote-back
spec:
replicas: 1
replicas: 3
selector:
matchLabels:
app: azure-vote-back
Expand Down Expand Up @@ -46,7 +46,7 @@ kind: Deployment
metadata:
name: azure-vote-front
spec:
replicas: 1
replicas: 3
selector:
matchLabels:
app: azure-vote-front
Expand Down

0 comments on commit 3a5acc3

Please sign in to comment.