Removing all ansible-linter errors
Some checks failed
Ansible Linting / build (push) Failing after 16s
Secops Linting and Safety Checks / checkov-scan-s3 (push) Failing after 18s
Wiki Resources Sanity Checks / ruff-checks (push) Successful in 7s

This commit is contained in:
2026-04-26 01:35:56 -07:00
parent c44babf3d8
commit fbe6e5c3e2
15 changed files with 33 additions and 30 deletions

View File

@@ -8,8 +8,8 @@
- name: Running install on the keyrings directory
ansible.builtin.command:
cmd: install -m 0755 -d /etc/apt/keyrings
register: install
changed_when: install.rc == 0
register: base_install_keyrings
changed_when: base_install_keyrings.rc == 0
- name: Fetch Docker GPG Key
vars:
keylink: https://download.docker.com/linux/ubuntu/gpg
@@ -37,5 +37,5 @@
- name: Verify that the docker components are installed properly
ansible.builtin.command:
cmd: docker run hello-world
register: docker
changed_when: docker.rc == 0
register: base_docker_hello
changed_when: base_docker_hello.rc == 0

View File

@@ -6,3 +6,5 @@
- name: Run installation script
ansible.builtin.command:
cmd: bash /tmp/k3s.sh
register: base_k3s_install_script
changed_when: base_k3_install_script.rc == 0

View File

@@ -15,11 +15,3 @@
become: true
tags:
- setup
- name: Run through nomad removal steps
tags: nomad
ansible.builtin.include_tasks:
file: nomad.yaml
apply:
become: true
tags:
- nomad