Basic setup now passing initial checks
Some checks failed
Ansible Linting / ansible-lint (push) Failing after 4s

This commit is contained in:
shockrah 2025-03-04 15:14:22 -08:00
parent 088846cad9
commit 510baa7f94
3 changed files with 42 additions and 47 deletions

3
playbooks/inventory.yaml Normal file
View File

@ -0,0 +1,3 @@
static-web:
hosts:
shockrah.xyz:

View File

@ -1,49 +1,40 @@
# Things that we definitely want to have are the following # Things that we definitely want to have are the following
# docker docker-compose python(latest) certbot # docker docker-compose python(latest) certbot
- name: Install base dependencies - name: Uhhh yea
ansible.builtin.apt: become: true
update_cache: true block:
pkg: - name: Install base dependencies
- ca-certificates ansible.builtin.apt:
- curl update_cache: true
- lsb_release pkg:
- name: Setup keyring - ca-certificates
ansible.builtin.command: - curl
cmd: "install -m 0755 -d {{ static_keyring_dir }}" - lsb-release
creates: "{{ static_keyring_dir }}" - name: Setup keyring directory
- name: Download the docker GPG key ansible.builtin.command:
ansible.builtin.get_url: cmd: "install -m 0755 -d {{ static_keyring_dir }}"
url: "{{ static_docker_ubuntu }}/gpg" creates: "{{ static_keyring_dir }}"
dest: "{{ static_keyring_dir }}" - name: Download the docker GPG key
mode: "0644" ansible.builtin.get_url:
- name: Set permissions on the docker ASC in our keyring url: "{{ static_docker_ubuntu }}/gpg"
ansible.builtin.file: dest: "{{ static_keyring_dir }}/docker.asc"
state: file mode: "0644"
dest: "{{ static_keyring_dir }}/docker.asc" - name: Ensure docker.lst is present
mode: "0644" vars:
- name: Get os codename key_path: "{{ static_keyring_dir }}/docker.asc"
ansible.builtin.shell: repo: "{{ static_docker_ubuntu }}"
cmd: set -o pipefail && lsb_release -sc | tr -d '\n' os_codename: jammy
args: ansible.builtin.template:
executable: /usr/bin/bash src: docker.list
register: codename dest: "{{ static_apt_sources_dir }}/docker.list"
changed_when: false mode: "0644"
- name: Ensure docker.lst is present - name: Install docker and python packages
vars: ansible.builtin.apt:
key_path: "{{ static_keyring_dir }}/docker.asc" update_cache: true
repo: "{{ static_docker_ubuntu }}" pkg:
os_codename: "{{ codename.stdout }}" - docker-ce
ansible.builtin.template: - docker-ce-cli
src: docker.list - containerd.io
dest: "{{ static_apt_sources_dir }}/docker.list" - docker-buildx-plugin
mode: "0644" - docker-compose-plugin
- name: Install docker and python packages - python3
ansible.builtin.apt:
update_cache: true
pkg:
- docker-ce
- docker-ce-cli
- containerd.io
- docker-buildx-plugin
- docker-compose-plugin
- python3

View File

@ -1,3 +1,4 @@
static_keyring_dir: /etc/apt/keyrings static_keyring_dir: /etc/apt/keyrings
static_docker_ubuntu: https://download.docker.com/linux/ubuntu static_docker_ubuntu: https://download.docker.com/linux/ubuntu
static_apt_sources_dir: /etc/apt/sources.list.d static_apt_sources_dir: /etc/apt/sources.list.d
static_codename: jammy