Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to Fedora 41 #45

Merged
merged 4 commits into from
Feb 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 19 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,14 @@ Before you can run our Ansible playbooks, you need to meet the following
prerequisites:

* Create a DigitalOcean API token, and pass it to the inventory generator by
setting the `DO_API_TOKEN` environment variable.
setting the `DO_API_TOKEN` environment variable. The API token must have
access to the following scopes:
- Read: droplet, firewall, monitoring, project, ssh_key
- Create: droplet
- Update: droplet, monitoring, project
* If you are creating a new droplet, and want to configure DNS as well, then
create a CloudFlare API token, and pass it to the Ansible playbook by setting
the `CLOUDFLARE_TOKEN` environment variable.
create a CloudFlare API token with DNS edit permissions, and pass it to the
Ansible playbook by setting the `CLOUDFLARE_TOKEN` environment variable.
* Set the vault decryption password of the Ansible vaulted file with our
secrets. This may be done by setting the `ANSIBLE_VAULT_PASSWORD_FILE`
environment variable to point to a file containing the password.
Expand Down Expand Up @@ -117,7 +121,7 @@ Initial setup
The summary of the initial setup is:

1. Create the droplet with monitoring and relevant SSH keys.
2. Assign new droplet to the matplotlib.org project and the Web firewall.
2. Assign new droplet to the matplotlib.org project.
3. Add DNS entries pointing to the server on CloudFlare.
4. Grab the SSH host fingerprints.
5. Reboot.
Expand All @@ -144,7 +148,8 @@ ansible-playbook create.yml --extra-vars "host=pluto functional=web99 ssh_keys='

The playbook will create the server, as well as add DNS records on CloudFlare.
Note, you must set `DO_API_TOKEN` and `CLOUDFLARE_TOKEN` in the environment to
access these services.
access these services. The droplet ID and IP address will be printed at the
end of the playbook.

Then, to ensure you are connecting to the expected server, you should grab the
SSH host keys via the DigitalOcean Droplet Console:
Expand All @@ -159,16 +164,21 @@ Note down the outputs to verify later, e.g.,

```
# Use these for comparison when connecting yourself.
1024 SHA256:J2sbqvhI/VszBtVvPabgxyz6sRnGLrZUn0kqfv4doAM [email protected] (DSA)
256 SHA256:J0rOMayXhL1+5wbm4WQNpAvmscDjqwJjAtk1SLemRMI [email protected] (ECDSA)
256 SHA256:y8EDRGMpLWOW72x47MVKsAfSAl8JHjsOc/RGaiMTPGs [email protected] (ED25519)
3072 SHA256:AyuNO8FES5k9vobv0Pu9XpvtjVFZ1bTTNxb1lo+AuRA [email protected] (RSA)
256 SHA256:p6MiA8+IO1WcpXHDOQ4rhiVCo+MDxWB7ehfNfxvbDkU [email protected] (ECDSA)
256 SHA256:RfDahJqnQFLeFN+zl9f+hmB+W05OoZK26NfNQkj6KtY [email protected] (ED25519)
3072 SHA256:tYwdULlz5/XP5Ze7PCj9XpO3VIMEZkiOiFuhr9nke34 [email protected] (RSA)
```

Finally, you should reboot the droplet. This is due to a bug in cloud-init on
DigitalOcean, which generates a new machine ID after startup, causing system
logs to be seem invisible.

This can be done from the Console, or via the CLI:

```
doctl compute droplet-action reboot <droplet-id>
```

Running Ansible
---------------

Expand Down
2 changes: 1 addition & 1 deletion collections/requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
collections:
- name: ansible.posix
- name: community.general
version: ">=2.0.0"
version: ">=8.0.0"
- name: community.digitalocean
21 changes: 18 additions & 3 deletions create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,7 @@
community.digitalocean.digital_ocean_droplet:
state: present
name: "{{ host }}.matplotlib.org"
firewall:
- Web
image: fedora-39-x64
image: fedora-41-x64
monitoring: true
project: matplotlib.org
region: tor1
Expand All @@ -117,6 +115,8 @@
map(attribute='ip_address') |
first
}}
tags:
- website
zone: matplotlib.org

- name: Setup functional DNS for droplet on CloudFlare
Expand All @@ -126,8 +126,23 @@
record: "{{ functional }}"
type: CNAME
value: "{{ host }}.matplotlib.org"
tags:
- website
zone: matplotlib.org

- name: Print droplet info
ansible.builtin.debug:
msg:
- "Droplet ID is {{ new_droplet.data.droplet.id }}"
- >-
First Public IPv4 is {{
(new_droplet.data.droplet.networks.v4 | selectattr('type', 'equalto', 'public')).0.ip_address |
default('<none>', true) }}
- >-
First Private IPv4 is {{
(new_droplet.data.droplet.networks.v4 | selectattr('type', 'equalto', 'private')).0.ip_address |
default('<none>', true) }}

vars:
# We currently name servers based on planets in the Solar System.
valid_planets:
Expand Down
2 changes: 2 additions & 0 deletions files/dnf5-automatic.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[commands]
apply_updates = yes
11 changes: 8 additions & 3 deletions matplotlib.org.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
- name: Install server maintenance
ansible.builtin.dnf:
name:
- dnf-automatic
- dnf5-plugin-automatic
- fail2ban
state: present

Expand All @@ -63,8 +63,8 @@
name:
- golang-github-prometheus
- golang-github-prometheus-alertmanager
- golang-github-prometheus-node-exporter
- grafana
- node-exporter
# Remove this when Loki is packaged.
- podman
state: present
Expand All @@ -77,9 +77,14 @@

# Automatic updates
# #################
- name: Configure automatic updates
ansible.builtin.copy:
src: dnf5-automatic.conf
dest: /etc/dnf/dnf5-plugins/automatic.conf

- name: Enable automatic updates
ansible.builtin.systemd:
name: dnf-automatic-install.timer
name: dnf5-automatic.timer
enabled: true
state: started

Expand Down