From a15ed179da4fe542253f94c97924b3dc0b30b519 Mon Sep 17 00:00:00 2001 From: The0Mikkel Date: Sun, 16 Nov 2025 19:57:35 +0100 Subject: [PATCH 1/3] feat(k8s): update image reference in deployment template and add deployment update instructions --- README.md | 3 +++ template/k8s.yml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7a4aeee..337c052 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,9 @@ python3 src/generator.py *This is done automatically in the Docker container build process.* +To update the Kubernetes deployment file, update the deployment template in `template/k8s.yml`. +An updated `k8s/k8s.yml` will then be automatically generated on next release. + ## Contributing We welcome contributions of all kinds, from **code** and **documentation** to **bug reports** and **feedback**! diff --git a/template/k8s.yml b/template/k8s.yml index 3333bc1..08aa9af 100644 --- a/template/k8s.yml +++ b/template/k8s.yml @@ -25,7 +25,7 @@ spec: automountServiceAccountToken: false containers: - name: error-fallback - image: ctfpilot/error-fallback:{ .Version } + image: ghcr.io/ctfpilot/error-fallback:{ .Version } imagePullPolicy: Always ports: - name: http From 0a3d575df2aec6b54b5d94e57c3be7cc8e15dc57 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sun, 16 Nov 2025 18:59:50 +0000 Subject: [PATCH 2/3] chore(release): 1.2.0-r.1 [skip ci] ## [1.2.0-r.1](https://github.com/ctfpilot/error-fallback/compare/v1.1.0...v1.2.0-r.1) (2025-11-16) ### Features * **k8s:** update image reference in deployment template and add deployment update instructions ([a15ed17](https://github.com/ctfpilot/error-fallback/commit/a15ed179da4fe542253f94c97924b3dc0b30b519)) --- k8s/k8s.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/k8s/k8s.yml b/k8s/k8s.yml index 49af83f..b4a8e5c 100644 --- a/k8s/k8s.yml +++ b/k8s/k8s.yml @@ -5,7 +5,7 @@ metadata: labels: app.kubernetes.io/part-of: ctfpilot app.kubernetes.io/name: error-fallback - app.kubernetes.io/version: 1.1.0 + app.kubernetes.io/version: 1.2.0-r.1 app.kubernetes.io/component: challenges ctfpilot.com/component: error-fallback @@ -25,7 +25,7 @@ spec: automountServiceAccountToken: false containers: - name: error-fallback - image: ctfpilot/error-fallback:1.1.0 + image: ghcr.io/ctfpilot/error-fallback:1.2.0-r.1 imagePullPolicy: Always ports: - name: http @@ -57,7 +57,7 @@ metadata: labels: app.kubernetes.io/part-of: ctfpilot app.kubernetes.io/name: error-fallback - app.kubernetes.io/version: 1.1.0 + app.kubernetes.io/version: 1.2.0-r.1 app.kubernetes.io/component: challenges ctfpilot.com/component: error-fallback spec: From ca40909e32dc30f83e1a7438fc8865d95e680969 Mon Sep 17 00:00:00 2001 From: Mikkel Albrechtsen Date: Sun, 16 Nov 2025 20:01:16 +0100 Subject: [PATCH 3/3] Correct wording in README Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 337c052..9ad26d4 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ python3 src/generator.py *This is done automatically in the Docker container build process.* To update the Kubernetes deployment file, update the deployment template in `template/k8s.yml`. -An updated `k8s/k8s.yml` will then be automatically generated on next release. +An updated `k8s/k8s.yml` will then be automatically generated on the next release. ## Contributing