diff options
author | Christian Pointner <equinox@spreadspace.org> | 2020-06-22 02:37:11 +0200 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2020-06-22 02:37:11 +0200 |
commit | 5a35c210ddb64998586b69b921e8d721395f09d5 (patch) | |
tree | 9a65e26f147c59ab379e1cd23a1baf60ac5d5264 /_graveyard_/chaos-at-home | |
parent | Merge branch 'topic/kubernetes-network-plugins' (diff) | |
parent | converted other physical machines to new network config (diff) |
Merge branch 'topic/network-interfaces-variables-refactoring'
Diffstat (limited to '_graveyard_/chaos-at-home')
-rw-r--r-- | _graveyard_/chaos-at-home/host_vars/r3-cccamp19-sw0.yml | 9 | ||||
-rw-r--r-- | _graveyard_/chaos-at-home/r3-cccamp19-gw.yml | 5 | ||||
-rw-r--r-- | _graveyard_/chaos-at-home/r3-cccamp19-sw0.yml | 8 | ||||
-rw-r--r-- | _graveyard_/chaos-at-home/r3-cccamp19_vm.yml | 9 | ||||
-rw-r--r-- | _graveyard_/chaos-at-home/r3-vex2.yml | 7 |
5 files changed, 38 insertions, 0 deletions
diff --git a/_graveyard_/chaos-at-home/host_vars/r3-cccamp19-sw0.yml b/_graveyard_/chaos-at-home/host_vars/r3-cccamp19-sw0.yml new file mode 100644 index 00000000..9a0e7782 --- /dev/null +++ b/_graveyard_/chaos-at-home/host_vars/r3-cccamp19-sw0.yml @@ -0,0 +1,9 @@ +$ANSIBLE_VAULT;1.2;AES256;chaos-at-home +36323334643335666630393439363962363665633161333563336237376532303137336431336665 +3430313039653331633563393033393637633164616462310a366162373163353561363864306465 +30343433653738663735383532336535396231613162303232656139663562633238383765666233 +3434616261623131310a343236333230363866666331663665373566383938383136316536323435 +62313238303564666230393333353630326464316631376238366635616238613232366466383035 +63636562616437356432323731613632653636363031643165666339633363353934633262643466 +64363839343230393863643532613365393033333731653830363061663135663533636332353162 +36336233376561613338 diff --git a/_graveyard_/chaos-at-home/r3-cccamp19-gw.yml b/_graveyard_/chaos-at-home/r3-cccamp19-gw.yml new file mode 100644 index 00000000..e92370ac --- /dev/null +++ b/_graveyard_/chaos-at-home/r3-cccamp19-gw.yml @@ -0,0 +1,5 @@ +--- +- name: configure dyndns + hosts: r3-cccamp19-gw + roles: + - role: dyndns/client diff --git a/_graveyard_/chaos-at-home/r3-cccamp19-sw0.yml b/_graveyard_/chaos-at-home/r3-cccamp19-sw0.yml new file mode 100644 index 00000000..36ee99f5 --- /dev/null +++ b/_graveyard_/chaos-at-home/r3-cccamp19-sw0.yml @@ -0,0 +1,8 @@ +--- +- name: bootstrap + hosts: r3-cccamp19-sw0 + gather_facts: no + roles: + - role: dellos6/bootstrap + - role: dellos6/base + - role: dellos6/layer2 diff --git a/_graveyard_/chaos-at-home/r3-cccamp19_vm.yml b/_graveyard_/chaos-at-home/r3-cccamp19_vm.yml new file mode 100644 index 00000000..fa4ffb77 --- /dev/null +++ b/_graveyard_/chaos-at-home/r3-cccamp19_vm.yml @@ -0,0 +1,9 @@ +--- +- name: Basic Setup + hosts: "{{ install_hostname }}" + roles: + - role: apt-repo/base + - role: core/base + - role: core/sshd + - role: core/zsh + - role: dyndns/client diff --git a/_graveyard_/chaos-at-home/r3-vex2.yml b/_graveyard_/chaos-at-home/r3-vex2.yml new file mode 100644 index 00000000..4efac0a8 --- /dev/null +++ b/_graveyard_/chaos-at-home/r3-vex2.yml @@ -0,0 +1,7 @@ +--- +- name: nothing to see here + hosts: r3-vex2 + tasks: + - name: do nothing + debug: + msg: "all the rest is done using the realraum ansible repo" |