Skip to content

Commit

Permalink
Upgrade repo for Ubuntu 22.04. (#190)
Browse files Browse the repository at this point in the history
* Upgrade repo for Ubuntu 22.04.

* Remove unnecessary Dockerfile from Molecule configuration.

* Add python3-distutils package required by Ubuntu 22.04.

* Use postgresql_privs module to set database user permissions.

* Update linting.

* Remove ntp from base packages installed as it is no longer necessary.
  • Loading branch information
YPCrumble committed Apr 22, 2023
1 parent 298b526 commit 7dc3746
Show file tree
Hide file tree
Showing 53 changed files with 278 additions and 233 deletions.
9 changes: 9 additions & 0 deletions .ansible-lint
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
---

skip_list:
- ANSIBLE0006
- ANSIBLE0012
# TODO: Remove free-form from the repo.
- no-free-form
- name[missing]
# TODO: Fix this.
- name[casing]
# TODO: Test removing this from each task and see if there is a workaround.
- no-changed-when
6 changes: 3 additions & 3 deletions .github/workflows/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.6, 3.7]
python-version: [3.9, "3.10", 3.11]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
2 changes: 2 additions & 0 deletions .yamllint
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
---

extends: default

rules:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Environment-specific settings are in the `group_vars` directory.
A `certbot` role is also included for automatically generating and renewing
trusted SSL certificates with [Let's Encrypt][lets-encrypt].

**Tested with OS:** Ubuntu 18.04 LTS (64-bit), Ubuntu 16.04 LTS (64-bit).
**Tested with OS:** Ubuntu 22.04 LTS (64-bit), Ubuntu 20.04 LTS (64-bit).

**Tested with Cloud Providers:** [Digital Ocean][digital-ocean], [AWS][aws], [Rackspace][rackspace]

Expand Down Expand Up @@ -313,9 +313,9 @@ to run during deployment in most Django environments.

### Changing the Ubuntu release

The [Vagrantfile](Vagrantfile) uses the Ubuntu 20.04 LTS Vagrant box for a
The [Vagrantfile](Vagrantfile) uses the Ubuntu 22.04 LTS Vagrant box for a
64-bit PC that is published by Canonical in HashiCorp Atlas. To use Ubuntu
18.04 LTS instead, change the `config.vm.box` setting to `ubuntu/bionic64`.
20.04 LTS instead, change the `config.vm.box` setting to `ubuntu/focal64`.

### Changing the Python version used by your application

Expand Down
2 changes: 1 addition & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "ubuntu/focal64"
config.vm.box = "ubuntu/jammy64"
config.ssh.forward_agent = false
config.vm.define "my-cool-app.local", primary: true do |app|
app.vm.hostname = "my-cool-app"
Expand Down
2 changes: 1 addition & 1 deletion dbservers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
update_apt_cache: true

module_defaults:
apt:
ansible.builtin.apt:
force_apt_get: true

roles:
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use the official Ubuntu 20.04 base image from the Docker repository
FROM ubuntu:focal
FROM ubuntu:jammy

# Allow processes to detect that they are being run in a container
ENV container oci
Expand Down
2 changes: 1 addition & 1 deletion group_vars/development/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ application_name: django_default_project
#
# More info here: https://launchpad.net/~fkrull/+archive/ubuntu/deadsnakes
enable_deadsnakes_ppa: true
virtualenv_python_version: python3.9
virtualenv_python_version: python3.11


# Git settings.
Expand Down
14 changes: 0 additions & 14 deletions molecule/default/Dockerfile.j2

This file was deleted.

9 changes: 5 additions & 4 deletions molecule/default/converge.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
---
# See https://github.com/metacloud/molecule/issues/843#issuecomment-304710797
# and https://github.com/metacloud/molecule/blob/v2/test/scenarios/driver/ec2/molecule/default/playbook.yml#L1-L13
- hosts: all
- name: Converge
hosts: all
gather_facts: false
tasks:
- name: Install Python3 for Ansible
raw: test -e /usr/bin/python3 || (apt -y update && apt install -y python3-minimal)
ansible.builtin.raw: test -e /usr/bin/python3 || (apt -y update && apt install -y python3-minimal)
become: true
changed_when: false

Expand All @@ -17,11 +18,11 @@

tasks:
- name: Install Python3
raw: apt-get install python3-minimal
ansible.builtin.raw: apt-get install python3-minimal
changed_when: false

module_defaults:
apt:
ansible.builtin.apt:
force_apt_get: true

roles:
Expand Down
13 changes: 6 additions & 7 deletions molecule/default/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,16 @@ dependency:
driver:
name: docker
lint: |
set -e
yamllint .
ansible-lint
flake8
platforms:
- name: instance-xenial
- name: instance-jammy
groups:
- vagrant
image: ubuntu
image_version: xenial
image_version: jammy
privileged: true
- name: instance-focal
groups:
Expand All @@ -20,14 +23,10 @@ platforms:
privileged: true
provisioner:
name: ansible
lint:
name: ansible-lint
env:
ANSIBLE_ROLES_PATH: ../../roles/
inventory:
links:
group_vars: ../../group_vars/
verifier:
name: testinfra
lint:
name: flake8
name: ansible
9 changes: 5 additions & 4 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
-r requirements.txt

molecule==3.3.4
molecule-docker==0.2.4
testinfra==3.2.1
yamllint==1.19.0
ansible-lint==6.14.6
flake8==3.9.1
molecule==4.0.4
molecule-docker==2.1.0
yamllint==1.30.0
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ansible==4.2.0
ansible==7.4.0
10 changes: 8 additions & 2 deletions roles/avahi/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
---

- name: Install the Avahi mDNS/DNS-SD daemon
apt: name=avahi-daemon update_cache={{ update_apt_cache }} state=present
ansible.builtin.apt:
name: avahi-daemon
update_cache: "{{ update_apt_cache }}"
state: present
tags: packages

- name: Ensure the Avahi mDNS/DNS-SD daemon is running
service: name=avahi-daemon state=started enabled=yes
ansible.builtin.service:
name: avahi-daemon
state: started
enabled: true
32 changes: 17 additions & 15 deletions roles/base/tasks/create_swap_file.yml
Original file line number Diff line number Diff line change
@@ -1,38 +1,40 @@
---
- name: Create swap file
command: dd if=/dev/zero of={{ swap_file_path }} bs=1024 count={{ swap_file_size_kb }}k
ansible.builtin.command: dd if=/dev/zero of={{ swap_file_path }} bs=1024 count={{ swap_file_size_kb }}k
creates="{{ swap_file_path }}"
tags: swap.file.create

- name: Change swap file permissions
file: path="{{ swap_file_path }}"
owner=root
group=root
mode=0600
ansible.builtin.file:
path: "{{ swap_file_path }}"
owner: root
group: root
mode: "0600"
tags: swap.file.permissions

- name: Check swap file type
command: file {{ swap_file_path }}
ansible.builtin.command: file {{ swap_file_path }}
register: swapfile
tags: swap.file.mkswap
changed_when: false

- name: Make swap file
command: "mkswap {{ swap_file_path }}"
ansible.builtin.command: "mkswap {{ swap_file_path }}"
when: swapfile.stdout.find('swap file') == -1
tags: swap.file.mkswap

- name: Write swap entry in fstab
mount: name=none
src={{ swap_file_path }}
fstype=swap
opts=sw
passno=0
dump=0
state=present
ansible.posix.mount:
name: none
src: "{{ swap_file_path }}"
fstype: swap
opts: sw
passno: 0
dump: 0
state: present
tags: swap.fstab

- name: Mount swap
command: "swapon {{ swap_file_path }}"
ansible.builtin.command: "swapon {{ swap_file_path }}"
when: ansible_swaptotal_mb < 1
tags: swap.file.swapon
9 changes: 4 additions & 5 deletions roles/base/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,25 @@
---

- include: create_swap_file.yml
- ansible.builtin.import_tasks: create_swap_file.yml
when: create_swap_file
tags: swap

- name: Install security updates
apt: default_release={{ ansible_distribution_release }}-security
ansible.builtin.apt: default_release={{ ansible_distribution_release }}-security
update_cache={{ update_apt_cache }}
upgrade=dist
tags:
- packages
- skip_ansible_lint

- name: Install base packages
apt:
ansible.builtin.apt:
update_cache: "{{ update_apt_cache }}"
state: present
name:
- locales
- build-essential
- acl
- ntp
- htop
- git
- "{{ base_python_package }}-pip"
Expand All @@ -31,7 +30,7 @@
- packages.security

- name: Upgrade pip
pip: name=pip state=latest
ansible.builtin.pip: name=pip state=latest
tags:
- packages
- skip_ansible_lint
2 changes: 1 addition & 1 deletion roles/celery/handlers/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---

- name: restart {{ celery_application_name }}
supervisorctl: name={{ celery_application_name }} state=restarted
community.general.supervisorctl: name={{ celery_application_name }} state=restarted
6 changes: 3 additions & 3 deletions roles/celery/tasks/copy_scripts.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---

- name: Create the folder for the celery scripts
file: path={{ celery_scripts_dir }}
ansible.builtin.file: path={{ celery_scripts_dir }}
owner={{ celery_user }}
group={{ celery_group }}
mode=0774
state=directory

- name: Create the {{ celery_application_name }} script file
template: src={{ celery_template_file }}
- name: Create the script file for {{ celery_application_name }}
ansible.builtin.template: src={{ celery_template_file }}
dest={{ celery_scripts_dir }}/{{ celery_application_name }}_start
owner={{ celery_user }}
group={{ celery_group }}
Expand Down
4 changes: 2 additions & 2 deletions roles/celery/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---

- include: copy_scripts.yml
- ansible.builtin.import_tasks: copy_scripts.yml
tags: celery

- include: setup_supervisor.yml
- ansible.builtin.import_tasks: setup_supervisor.yml
tags: celery
33 changes: 19 additions & 14 deletions roles/celery/tasks/setup_supervisor.yml
Original file line number Diff line number Diff line change
@@ -1,42 +1,47 @@
---

- name: Ensure the Supervisor service is running
service:
ansible.builtin.service:
name: supervisor
state: started
enabled: yes
enabled: true
# TODO: This is likely due to a bug in Ansible.
# Remove this line in the future.
# See https://github.com/ansible/ansible/issues/75005
use: sysvinit

- name: Create the Supervisor config file for {{ celery_application_name }}
template: src=supervisor_{{ celery_application_name }}.conf.j2
ansible.builtin.template: src=supervisor_{{ celery_application_name }}.conf.j2
dest=/etc/supervisor/conf.d/{{ celery_application_name }}.conf
mode=0644

- name: Create the {{ celery_application_name }} log directory
file: path={{ celery_log_dir }}
owner={{ celery_user }}
group={{ celery_group }}
state=directory
- name: Create the log directory for {{ celery_application_name }}
ansible.builtin.file:
path: "{{ celery_log_dir }}"
owner: "{{ celery_user }}"
group: "{{ celery_group }}"
state: directory
mode: "0644"
changed_when: false

- name: Check for an existing celery logfile
stat:
ansible.builtin.stat:
path: "{{ celery_log_file }}"
register: p

- name: Create (or retain) the {{ celery_application_name }} log file
- name: Create (or retain) the log file for {{ celery_application_name }}
# Removing until https://github.com/ansible/ansible/issues/45530 gets resolved.
# copy: content=""
# ansible.builtin.copy: content=""
# dest={{ celery_log_file }}
# owner={{ celery_user }}
# group={{ celery_group }}
# force=no
file:
ansible.builtin.file:
path: "{{ celery_log_file }}"
owner: "{{ celery_user }}"
group: "{{ celery_group }}"
state: '{{ "file" if p.stat.exists else "touch" }}'
state: '{{ "file" if p.stat.exists else "touch" }}'
mode: "0644"

- name: Re-read the Supervisor config files
supervisorctl: name={{ celery_application_name }} state=present
community.general.supervisorctl: name={{ celery_application_name }} state=present

0 comments on commit 7dc3746

Please sign in to comment.