forked from Azure/bicep
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes a couple of bugs in aks samples (Azure#3912)
* readme and small fix in script * fix: script * fix: removed explict k8s version and upd. readme * changed json to pass tests
- Loading branch information
Showing
6 changed files
with
36 additions
and
14 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
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,24 @@ | ||
|
||
# Azure Kubernetes Service | ||
|
||
## Deployment steps ## | ||
|
||
### 0. Optional: Install Bicep ### | ||
* [Install the Bicep CLI](https://github.com/Azure/bicep/blob/main/docs/installing.md) by following the instruction. | ||
|
||
### 1. Create Service Principal ### | ||
``` | ||
az ad sp create-for-rbac | ||
``` | ||
### 2. Create Resource Group #### | ||
``` | ||
az group create -n <resource-group-name> -l westus | ||
``` | ||
|
||
### 3. Optional: Generete SSH Keys (Windows) ### | ||
[How to Generate SSH Key in Windows 10](https://phoenixnap.com/kb/generate-ssh-key-windows-10) | ||
|
||
### 4. Deploy #### | ||
``` | ||
az deployment group create -g <resource-group-name> -f .\main.bicep --parameters dnsPrefix=<dns-prefix> linuxAdminUsername=<username> servicePrincipalClientId=<sp-appid> servicePrincipalClientSecret=<sp-password> sshRSAPublicKey=<ssh-public-key> | ||
``` |
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