72 lines
1.8 KiB
YAML
72 lines
1.8 KiB
YAML
---
|
|
- name: Preparation
|
|
ansible.builtin.shell: curl -sfL https://get.k3s.io | INSTALL_K3S_VERSION=v1.28.5+k3s1 sh -s - --write-kubeconfig-mode 644 --node-ip "{{ awx_ip }}" --flannel-iface "{{ awx_if }}"
|
|
|
|
- name: clonage du dépot awx-on-k3s
|
|
git:
|
|
repo: https://github.com/kurokobo/awx-on-k3s.git
|
|
dest: "{{ awx_dir }}"
|
|
clone: yes
|
|
force: yes
|
|
|
|
- name: Git checkout
|
|
ansible.builtin.shell: "git checkout 2.10.0"
|
|
args:
|
|
chdir: "{{ awx_dir }}"
|
|
|
|
|
|
- name: Deploiement AWX Operator ...
|
|
ansible.builtin.shell: "kubectl apply -k operator"
|
|
args:
|
|
chdir: "{{ awx_dir }}"
|
|
|
|
#- name: Git checkout
|
|
#ansible.builtin.git:
|
|
#repo: 'https://github.com/kurokobo/awx-on-k3s.git'
|
|
#dest: "{{ awx_dir }}"
|
|
#version: release-2.10.0
|
|
|
|
- name: Generation de certification auto-signé
|
|
ansible.builtin.shell: 'openssl req -x509 -nodes -days 3650 -newkey rsa:2048 -out ./base/tls.crt -keyout ./base/tls.key -subj "/CN={{ awx_host }}/O={{ awx_host }}" -addext "subjectAltName = DNS:{{ awx_host }}"'
|
|
args:
|
|
chdir: "{{ awx_dir }}"
|
|
|
|
- name: Change hostname du fichier awx.yaml
|
|
replace:
|
|
path: ~/tools/awx-on-k3s/base/awx.yaml
|
|
regexp: 'awx.example.com'
|
|
replace: '{{ awx_host }}'
|
|
backup: yes
|
|
|
|
- name: creation du repertoire postgres-13
|
|
ansible.builtin.file:
|
|
path: /data/postgres-13
|
|
state: directory
|
|
mode: '0755'
|
|
|
|
- name: Creation repertoire projects
|
|
ansible.builtin.file:
|
|
path: /data/projects
|
|
state: directory
|
|
owner: 1000:0
|
|
|
|
- name: Deploiement d'AWX ...
|
|
ansible.builtin.shell: "kubectl apply -k base"
|
|
args:
|
|
chdir: "{{ awx_dir }}"
|
|
|
|
- name: Finalisation de l'installation awx
|
|
ansible.builtin.uri:
|
|
url: "http://s-awx.gsb.lan"
|
|
follow_redirects: none
|
|
method: GET
|
|
register: _result
|
|
until: _result.status == 200
|
|
retries: 90 # 90*10 seconds = 15 min
|
|
delay: 10 # Every 10 seconds
|
|
|
|
|
|
|
|
|
|
|