diff --git a/docs/guides/update-dokuwiki.md b/docs/guides/update-dokuwiki.md new file mode 100644 index 00000000..02d5942a --- /dev/null +++ b/docs/guides/update-dokuwiki.md @@ -0,0 +1,27 @@ +--- +title: Updating Dokuwiki +--- + +!!! success "Goal" + + How to update our wiki () to the latest version + +## 1. Create a Snaphot + +Go to the Chaosknoten Proxmox UI and create a snapshot of the `wiki` VM: + +## 2. Update Plugins + +- Go to the wiki's extension manager: or go to Admin > Extension Manager +- Update the "DokuWiki Upgrade Plugin" (if it has updates) +- Update other plugins while we're here already + +## 3. Update Dokuwiki + +- Go to the Wiki Upgrade: or go to Admin > Wiki Upgrade +- Click through the steps. Note: Disabling any plugins before the upgrade was not necessary in the past. + +## Closing Up + +Log out and back in again to verify that the Keycloak connection still works. +Maybe browse some pages as check if anything is obviously broken. diff --git a/inventories/chaosknoten/host_vars/cloud.yaml b/inventories/chaosknoten/host_vars/cloud.yaml index 8f299b2d..844cf1bf 100644 --- a/inventories/chaosknoten/host_vars/cloud.yaml +++ b/inventories/chaosknoten/host_vars/cloud.yaml @@ -1,7 +1,7 @@ # renovate: datasource=docker depName=git.hamburg.ccc.de/ccchh/oci-images/nextcloud nextcloud__version: 34 # renovate: datasource=docker depName=docker.io/library/postgres -nextcloud__postgres_version: 15.18 +nextcloud__postgres_version: 16.15 nextcloud__fqdn: cloud.hamburg.ccc.de nextcloud__data_dir: /data/nextcloud nextcloud__extra_configuration: "{{ lookup('ansible.builtin.template', 'resources/chaosknoten/cloud/nextcloud/extra_configuration.config.php.j2') }}" diff --git a/resources/chaosknoten/lists/docker_compose/compose.yaml.j2 b/resources/chaosknoten/lists/docker_compose/compose.yaml.j2 index 7a109e8c..df6acaa6 100644 --- a/resources/chaosknoten/lists/docker_compose/compose.yaml.j2 +++ b/resources/chaosknoten/lists/docker_compose/compose.yaml.j2 @@ -62,7 +62,7 @@ services: - POSTGRES_DB=mailmandb - POSTGRES_USER=mailman - "POSTGRES_PASSWORD={{ secret__lists__postgres_password }}" - image: docker.io/library/postgres:12-alpine + image: docker.io/library/postgres:16-alpine volumes: - /opt/mailman/database:/var/lib/postgresql/data networks: diff --git a/resources/chaosknoten/pretalx/docker_compose/compose.yaml.j2 b/resources/chaosknoten/pretalx/docker_compose/compose.yaml.j2 index 3c6e5daa..2a01e92c 100644 --- a/resources/chaosknoten/pretalx/docker_compose/compose.yaml.j2 +++ b/resources/chaosknoten/pretalx/docker_compose/compose.yaml.j2 @@ -3,7 +3,7 @@ services: database: - image: docker.io/library/postgres:15-alpine + image: docker.io/library/postgres:16-alpine environment: - "POSTGRES_USER=pretalx" - "POSTGRES_PASSWORD={{ secret__pretalx_db_password }}"