Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add more bicep content to actually deploy ARO on Azure #17

Merged
merged 28 commits into from
Aug 14, 2024
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
647e6ea
add network code
kksat Aug 7, 2024
61da2da
add makefile target to deploy network
kksat Aug 7, 2024
06fd9be
add bicep file for ARO deployment
kksat Aug 7, 2024
dc69205
add makefile target to deploy ARO
kksat Aug 7, 2024
103a811
add SPDX annotation
kksat Aug 7, 2024
054fb56
add makefile target to create resource group
kksat Aug 7, 2024
49fe5c4
deploy network before ARO deployment
kksat Aug 8, 2024
afddfb0
add service principal credentials
kksat Aug 8, 2024
b5b60b7
use pull secret only if it is defined
kksat Aug 8, 2024
b218202
add configuration parameters
kksat Aug 8, 2024
88be078
set '' as default for pull secret
kksat Aug 8, 2024
7a93165
add domain zone bicep file
kksat Aug 9, 2024
7a1c93d
add bicep file to linting
kksat Aug 9, 2024
6eb380e
add resources deployment resource group
kksat Aug 9, 2024
d17e079
parametrize vnet name with aro resouce group
kksat Aug 9, 2024
ddd32b4
add target to create service principal for ARO
kksat Aug 9, 2024
48dbb69
add target to update ARO RP service principal
kksat Aug 9, 2024
f6666c4
add makefile target to get ARO credentials after deployment
kksat Aug 9, 2024
071039d
add makefile target to get ARO url after deployment
kksat Aug 9, 2024
a2e837b
add default help makefile target
kksat Aug 9, 2024
93be882
fix makefile targets comments
kksat Aug 9, 2024
c7a1ac0
add target to create domain records after ARO created
kksat Aug 9, 2024
4ecb41f
use DNS zone
kksat Aug 9, 2024
914119d
correct makefile target
kksat Aug 9, 2024
591d5dd
add makefile target to check if domain zone exists
kksat Aug 9, 2024
80eb14c
add makefile target to login to created ARO
kksat Aug 12, 2024
9f839ad
fix shellcheck errors
kksat Aug 13, 2024
2085b8f
add license notice
kksat Aug 13, 2024
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
Prev Previous commit
Next Next commit
parametrize vnet name with aro resouce group
Signed-off-by: kksat <22549266+kksat@users.noreply.github.com>
kksat committed Aug 13, 2024
commit d17e079410eded15dfed55c24039f8fd44f3a4e6
2 changes: 1 addition & 1 deletion bicep/aro.bicep
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ param servicePrincipalClientId string
param servicePrincipalClientSecret string
param aroResourceGroup string = '${resourceGroup().name}-resources'

param vnetName string = 'aro-sapeic-vnet'
param vnetName string = '${resourceGroup().name}-vnet'
param masterSubnetName string = 'master'
param workerSubnetName string = 'worker'
param masterVmSize string = 'Standard_D8s_v3'