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

Feature azure #118

Open
wants to merge 69 commits into
base: 6
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
69 commits
Select commit Hold shift + click to select a range
9104911
fix nginx playbook version to stay compatible with system ansible
hmeiland Oct 27, 2021
bbe0071
workaround gpg check
hmeiland Nov 15, 2021
dda92be
add mpi for azure
hmeiland Nov 15, 2021
f4b096b
chmod /mnt/shared, since default anf will have mode 700
hmeiland Nov 16, 2021
f4b9e7b
add citc_cloud for azure
hmeiland Nov 16, 2021
48f9380
add azure var
hmeiland Nov 16, 2021
4c155f5
tune elastic
hmeiland Nov 24, 2021
a8205d8
adding citc_azure
hmeiland Nov 24, 2021
4ca54bf
azure python tools
hmeiland Nov 25, 2021
aa768fa
azure python tools
hmeiland Nov 25, 2021
e6970fa
citc_azure
hmeiland Nov 25, 2021
eb48e81
citc_azure
hmeiland Nov 25, 2021
3637552
citc_azure
hmeiland Nov 25, 2021
9add1b1
citc_azure
hmeiland Nov 25, 2021
0be6764
citc_azure
hmeiland Nov 25, 2021
f7850df
citc_azure
hmeiland Nov 25, 2021
2471d1c
citc_azure
hmeiland Nov 26, 2021
e0e5c08
citc_azure
hmeiland Nov 26, 2021
2548611
update_config and citc_azure
hmeiland Nov 26, 2021
f7199d5
add user_data
hmeiland Nov 26, 2021
4a47e34
add user_data
hmeiland Nov 29, 2021
4d471ca
add user_data
hmeiland Nov 29, 2021
e587258
add user_data
hmeiland Nov 29, 2021
f6ec63e
add user_data
hmeiland Nov 29, 2021
4d41c59
add user_data
hmeiland Nov 29, 2021
367d5fe
add user_data
hmeiland Nov 29, 2021
0a6e767
add user_data
hmeiland Nov 29, 2021
4ef2dbf
add user_data
hmeiland Nov 29, 2021
4675ab6
packer
hmeiland Nov 29, 2021
7a2c352
packer
hmeiland Nov 29, 2021
f43c5e0
packer
hmeiland Nov 29, 2021
1bc5f6e
packer
hmeiland Nov 29, 2021
abe1cab
dns zone compute
hmeiland Nov 29, 2021
22bd6f8
packer
hmeiland Nov 30, 2021
4686f25
packer
hmeiland Nov 30, 2021
99076ed
packer
hmeiland Nov 30, 2021
4c3d792
packer
hmeiland Nov 30, 2021
cc304e8
packer
hmeiland Nov 30, 2021
393793a
packer
hmeiland Nov 30, 2021
dac6dfd
packer
hmeiland Nov 30, 2021
2eda4d1
autoscaling
hmeiland Dec 2, 2021
994a0aa
packer
hmeiland Dec 2, 2021
3b4a386
dns_zone
hmeiland Dec 3, 2021
d663eb9
fixing boot
hmeiland Dec 8, 2021
1d2a976
fixing boot
hmeiland Dec 8, 2021
ea9c739
azure
hmeiland Dec 8, 2021
fa396c3
anf
hmeiland Dec 8, 2021
d4bba71
packer
hmeiland Dec 8, 2021
4aef1b2
azure dns
hmeiland Dec 8, 2021
e23bc1b
azure dns
hmeiland Dec 8, 2021
9016609
azure dns
hmeiland Dec 8, 2021
96c5696
azure dns
hmeiland Dec 8, 2021
a6a726a
azure dns
hmeiland Dec 8, 2021
b190d9d
azure dns
hmeiland Dec 9, 2021
986e573
azure dns
hmeiland Dec 9, 2021
bcc1b61
azure dns
hmeiland Dec 9, 2021
1510b29
bootstrap and custom data
hmeiland Dec 10, 2021
a97bd9b
adding node delete
hmeiland Dec 10, 2021
0812dea
stop node
hmeiland Dec 10, 2021
4788f3e
stop node
hmeiland Dec 10, 2021
7710ba9
create vm based on shape
hmeiland Jan 4, 2022
814d8a7
create vm based on shape
hmeiland Jan 4, 2022
4c66c40
add avset
hmeiland Jan 4, 2022
4a218c2
add avset
hmeiland Jan 5, 2022
659a71f
add cvmfs
hmeiland Jan 6, 2022
66ae716
tuning cvmfs
hmeiland Jan 6, 2022
0ba08fe
Merge branch '6' into feature-azure
milliams Jan 13, 2022
ea3e906
enable rdma
hmeiland Jan 17, 2022
d0b59f1
Merge branch 'feature-azure' of github.com:hmeiland/ansible into feat…
hmeiland Jan 17, 2022
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
packer
hmeiland committed Nov 30, 2021
commit 99076ed11593275795bc23a62900d0523412efca
4 changes: 4 additions & 0 deletions roles/packer/files/all.pkr.hcl
Original file line number Diff line number Diff line change
@@ -184,4 +184,8 @@ build {
provisioner "shell" {
script = "/home/citc/compute_image_extra.sh"
}

provisioner "shell" {
script = "/home/citc/compute_image_finalize.sh"
}
}
3 changes: 3 additions & 0 deletions roles/packer/files/compute_image_finalize.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#! /bin/bash

/usr/sbin/waagent -force -deprovision+user && export HISTSIZE=0 && sync
8 changes: 8 additions & 0 deletions roles/packer/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -65,6 +65,14 @@
group: citc
mode: u=rw,g=rw,o=

- name: copy in packer finalize run script template
copy:
src: compute_image_finalize.sh
dest: /home/citc/compute_image_finalize.sh
owner: citc
group: citc
mode: u=rw,g=rw,o=

- name: copy in EESSI install script
copy:
src: install_cvmfs_eessi.sh