Compare commits

..

1 commit

Author SHA1 Message Date
166b8fca4d chore(deps): update docker.io/library/mysql docker tag to v9
All checks were successful
/ build-deployer (push) Successful in 27s
/ build-keycloak (push) Successful in 43s
/ build-freetakserver (push) Successful in 1m19s
/ build-openbao-csi-provider (push) Successful in 1m4s
/ build-pethublocal (push) Successful in 42s
/ build-synapse (push) Successful in 39s
/ build-traefik-forward-auth (push) Successful in 35s
/ diff-and-deploy (push) Successful in 1m5s
/ build-openbao (push) Successful in 9m28s
2024-11-20 18:01:55 +00:00
5 changed files with 4 additions and 31 deletions

View file

@ -30,7 +30,7 @@ spec:
spec:
containers:
- name: mysql
image: docker.io/library/mysql:8.4.3
image: docker.io/library/mysql:9.1.0
envFrom:
- secretRef:
name: mysql

View file

@ -27,7 +27,7 @@ spec:
app: mysql
spec:
containers:
- image: docker.io/library/mysql:5.7
- image: docker.io/library/mysql:9.1
name: mysql
resources: {}
ports:

View file

@ -17,7 +17,7 @@ spec:
spec:
containers:
- name: bitwarden-cli
image: ghcr.io/charlesthomas/bitwarden-cli:2024.11.1
image: ghcr.io/charlesthomas/bitwarden-cli:2024.11.0
imagePullPolicy: IfNotPresent
envFrom:
- secretRef:

View file

@ -18,7 +18,7 @@ spec:
fsGroup: 1001
fsGroupChangePolicy: "OnRootMismatch"
containers:
- image: ghcr.io/shlinkio/shlink:4.3.0
- image: ghcr.io/shlinkio/shlink:4.2.5
name: shlink
resources: {}
ports:

View file

@ -10,30 +10,3 @@
apt:
name: [ufw]
state: absent
- name: check which users exist
ansible.builtin.user:
name: "{{ item }}"
loop: ["root", "finn", "debian"]
check_mode: true
register: users
- name: Ensure SSH key is set
ansible.posix.authorized_key:
user: "{{ item.item }}"
state: present
key: ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJs5PJ6jQF7Sx3T1b1+NBXt4JRsnjGnWv8+bCf4RpwGM finn@taint
loop: "{{ users.results }}"
loop_control:
label: "{{ item.item }}"
when: item.state | d('') == 'present'
- name: Invalidate old SSH key
ansible.posix.authorized_key:
user: "{{ item.item }}"
state: absent
key: ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDMaJrZWSrAYTaCoGhW+o8HivmBj5oZi7Dei73FtCl0d finn@taint
loop: "{{ users.results }}"
loop_control:
label: "{{ item.item }}"
when: item.state | d('') == 'present'