From 1d4ed56644b0c1e881869bdd8402ccd84fb89b85 Mon Sep 17 00:00:00 2001 From: Gino Harlos Date: Wed, 2 Oct 2024 16:00:00 +0200 Subject: [PATCH] update to next patchlevel release --- docs/README.ADVANCED.BUILD.PRE.INSTALLED.ROLE.md | 8 ++++---- docs/README.ADVANCED.BUILD.md | 8 ++++---- docs/README.BUILD.md | 4 ++-- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/README.ADVANCED.BUILD.PRE.INSTALLED.ROLE.md b/docs/README.ADVANCED.BUILD.PRE.INSTALLED.ROLE.md index b415ab3..68a6374 100644 --- a/docs/README.ADVANCED.BUILD.PRE.INSTALLED.ROLE.md +++ b/docs/README.ADVANCED.BUILD.PRE.INSTALLED.ROLE.md @@ -46,7 +46,7 @@ docker image inspect --format '{{ index .Config.Labels "org.label-schema.docker. ## Build a deployment container image with docker and pre installed role ```( optionally with time )``` ```bash declare -A roles[master]="primary directory node" roles[slave]="replica directory node" roles[backup]="backup directory node" roles[member]="managed node"; \ -MAJOR=5; MINOR=0; PATCH=8; IMAGE="univention/univention-corporate-server"; TAG="latest"; \ +MAJOR=5; MINOR=0; PATCH=9; IMAGE="univention/univention-corporate-server"; TAG="latest"; \ for role in ${!roles[*]}; do \ time docker build \ --build-arg role="${role}" \ @@ -68,7 +68,7 @@ Successfully tagged univention/univention-corporate-server-${role}:latest ### Container image build with docker, pre installed role and as Active Directory-compatible Domain Controller ```( experimental )``` ```bash declare -A roles[master]="primary directory node" roles[slave]="replica directory node" roles[backup]="backup directory node" roles[member]="managed node"; \ -MAJOR=5; MINOR=0; PATCH=8; IMAGE="univention/univention-corporate-server"; TAG="latest"; APPS="samba4"; \ +MAJOR=5; MINOR=0; PATCH=9; IMAGE="univention/univention-corporate-server"; TAG="latest"; APPS="samba4"; \ for role in ${!roles[*]}; do \ apps=$([[ ${role} =~ member ]] && echo -e '' || echo -e '-ad-dc'); \ time docker build \ @@ -96,7 +96,7 @@ docker images --format 'table {{ .Repository }}\t\t{{ .Size }}' univention/unive ## Build a deployment container image with podman and pre installed role ```( optionally with time )``` ```bash declare -A roles[master]="primary directory node" roles[slave]="replica directory node" roles[backup]="backup directory node" roles[member]="managed node"; \ -MAJOR=5; MINOR=0; PATCH=8; IMAGE="univention/univention-corporate-server"; TAG="latest"; \ +MAJOR=5; MINOR=0; PATCH=9; IMAGE="univention/univention-corporate-server"; TAG="latest"; \ for role in ${!roles[*]}; do \ time podman build \ --format docker \ @@ -119,7 +119,7 @@ Successfully tagged univention/univention-corporate-server-${role}:latest ### Container image build with podman, pre installed role and as Active Directory-compatible Domain Controller ```( experimental )``` ```bash declare -A roles[master]="primary directory node" roles[slave]="replica directory node" roles[backup]="backup directory node" roles[member]="managed node"; \ -MAJOR=5; MINOR=0; PATCH=8; IMAGE="univention/univention-corporate-server"; TAG="latest"; APPS="samba4"; \ +MAJOR=5; MINOR=0; PATCH=9; IMAGE="univention/univention-corporate-server"; TAG="latest"; APPS="samba4"; \ for role in ${!roles[*]}; do \ apps=$([[ ${role} =~ member ]] && echo -e '' || echo -e '-ad-dc'); \ time podman build \ diff --git a/docs/README.ADVANCED.BUILD.md b/docs/README.ADVANCED.BUILD.md index 53d4fff..a257a3d 100644 --- a/docs/README.ADVANCED.BUILD.md +++ b/docs/README.ADVANCED.BUILD.md @@ -16,7 +16,7 @@ STDOUT ( timeing ) ``` ## Build a deployment container image with different repository server using docker build ```( optionally with time )``` ```bash -MAJOR=5; MINOR=0; PATCH=8; IMAGE="univention/univention-corporate-server"; TAG="test"; UPDATES="updates-test.software-univention.de"; \ +MAJOR=5; MINOR=0; PATCH=9; IMAGE="univention/univention-corporate-server"; TAG="test"; UPDATES="updates-test.software-univention.de"; \ time docker build \ --build-arg DATE=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \ --build-arg UPDATES=${UPDATES} \ @@ -40,7 +40,7 @@ docker image inspect univention/univention-corporate-server:test ``` ## Build a deployment container image with different repository server using podman build ```( optionally with time )``` ```bash -MAJOR=5; MINOR=0; PATCH=8; IMAGE="univention/univention-corporate-server"; TAG="test"; UPDATES="updates-test.software-univention.de"; \ +MAJOR=5; MINOR=0; PATCH=9; IMAGE="univention/univention-corporate-server"; TAG="test"; UPDATES="updates-test.software-univention.de"; \ time podman build \ --format docker \ --build-arg DATE=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \ @@ -65,7 +65,7 @@ podman image inspect univention/univention-corporate-server:test ``` ## Build a deployment container image as a slimify variant using docker build ```( optionally with time )``` ```bash -MAJOR=5; MINOR=0; PATCH=8; IMAGE="univention/univention-corporate-server"; TAG="test"; SLIM="slim"; UPDATES="updates-test.software-univention.de"; \ +MAJOR=5; MINOR=0; PATCH=9; IMAGE="univention/univention-corporate-server"; TAG="test"; SLIM="slim"; UPDATES="updates-test.software-univention.de"; \ time docker build \ --build-arg SLIM=${SLIM} \ --build-arg DATE=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \ @@ -90,7 +90,7 @@ docker image inspect univention/univention-corporate-server:test-slim ``` ## Build a deployment container image as a slimify variant using podman build ```( optionally with time )``` ```bash -MAJOR=5; MINOR=0; PATCH=8; IMAGE="univention/univention-corporate-server"; TAG="test"; SLIM="slim"; UPDATES="updates-test.software-univention.de"; \ +MAJOR=5; MINOR=0; PATCH=9; IMAGE="univention/univention-corporate-server"; TAG="test"; SLIM="slim"; UPDATES="updates-test.software-univention.de"; \ time podman build \ --format docker \ --build-arg SLIM=${SLIM} \ diff --git a/docs/README.BUILD.md b/docs/README.BUILD.md index 474f5b9..cb9b51e 100644 --- a/docs/README.BUILD.md +++ b/docs/README.BUILD.md @@ -16,7 +16,7 @@ STDOUT ( timeing ) ``` ## Build a deployment container image with docker ```( optionally with time )``` ```bash -MAJOR=5; MINOR=0; PATCH=8; IMAGE="univention/univention-corporate-server"; TAG="latest"; \ +MAJOR=5; MINOR=0; PATCH=9; IMAGE="univention/univention-corporate-server"; TAG="latest"; \ time docker build \ --build-arg DATE=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \ --build-arg MAJOR=${MAJOR} \ @@ -39,7 +39,7 @@ docker image inspect univention/univention-corporate-server:latest ``` ## Build a deployment container image with podman ```( optionally with time )``` ```bash -MAJOR=5; MINOR=0; PATCH=8; IMAGE="univention/univention-corporate-server"; TAG="latest"; \ +MAJOR=5; MINOR=0; PATCH=9; IMAGE="univention/univention-corporate-server"; TAG="latest"; \ time podman build \ --format docker \ --build-arg DATE=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \