This repository has been archived by the owner on Mar 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 287
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix ConfigMap template for the web for the cases where Twitter and Google analytincs configuration is empty. Helm couldn't process it. * Change script to create the dev spaces to accepts the children dev spaces names instead of having them hardcoded. * Update readme and remove Add-Tiller.ps1 script, which is not useful anymore because now it is used Helm 3.0 * Fix typo.
- Loading branch information
Showing
4 changed files
with
25 additions
and
39 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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,10 +1,14 @@ | ||
Param( | ||
[parameter(Mandatory=$true)][string]$resourceGroup, | ||
[parameter(Mandatory=$true)][string]$rootSpace, | ||
[parameter(Mandatory=$true)][string]$aksName | ||
[parameter(Mandatory=$true)][string]$aksName, | ||
[parameter(Mandatory=$true)][string[]]$childSpaces | ||
) | ||
|
||
# Create Dev Spaces controller with some child spaces | ||
az aks use-dev-spaces -g $resourceGroup -n $aksName --space $rootSpace -y | ||
az aks use-dev-spaces -g $resourceGroup -n $aksName --space $rootSpace/scott -y | ||
az aks use-dev-spaces -g $resourceGroup -n $aksName --space $rootSpace/jessica -y | ||
|
||
foreach($child in $childSpaces) | ||
{ | ||
az aks use-dev-spaces -g $resourceGroup -n $aksName --space $rootSpace/$child -y | ||
} |
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