From be3b602b5166dc4ea395df14ae8b15e68e5c4e1b Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Thu, 12 Feb 2026 17:02:25 -0800 Subject: [PATCH 1/2] Update CV release to v1.0.3, add X-Clacks-Overhead header Co-Authored-By: Claude Opus 4.6 --- argocd/manifests/cv/deployment.yaml | 2 +- docs/changelog.d/cv-v1.0.3-and-clacks.feature.md | 1 + docs/changelog.d/cv-v1.0.3-and-clacks.misc.md | 1 + fly/nginx.conf | 2 ++ 4 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 docs/changelog.d/cv-v1.0.3-and-clacks.feature.md create mode 100644 docs/changelog.d/cv-v1.0.3-and-clacks.misc.md diff --git a/argocd/manifests/cv/deployment.yaml b/argocd/manifests/cv/deployment.yaml index 6c4eaa0..8df0f3a 100644 --- a/argocd/manifests/cv/deployment.yaml +++ b/argocd/manifests/cv/deployment.yaml @@ -22,7 +22,7 @@ spec: name: http env: - name: CV_RELEASE_URL - value: "https://forge.ops.eblu.me/api/packages/eblume/generic/cv/v1.0.2/cv-v1.0.2.tar.gz" + value: "https://forge.ops.eblu.me/api/packages/eblume/generic/cv/v1.0.3/cv-v1.0.3.tar.gz" resources: requests: memory: "64Mi" diff --git a/docs/changelog.d/cv-v1.0.3-and-clacks.feature.md b/docs/changelog.d/cv-v1.0.3-and-clacks.feature.md new file mode 100644 index 0000000..22e152f --- /dev/null +++ b/docs/changelog.d/cv-v1.0.3-and-clacks.feature.md @@ -0,0 +1 @@ +Update CV release to v1.0.3. diff --git a/docs/changelog.d/cv-v1.0.3-and-clacks.misc.md b/docs/changelog.d/cv-v1.0.3-and-clacks.misc.md new file mode 100644 index 0000000..aac391f --- /dev/null +++ b/docs/changelog.d/cv-v1.0.3-and-clacks.misc.md @@ -0,0 +1 @@ +Add X-Clacks-Overhead header to public proxy for cv and docs: GNU Terry Pratchett. diff --git a/fly/nginx.conf b/fly/nginx.conf index 22a5408..e50545a 100644 --- a/fly/nginx.conf +++ b/fly/nginx.conf @@ -76,6 +76,7 @@ http { proxy_ignore_headers Cache-Control Set-Cookie; add_header X-Cache-Status $upstream_cache_status; + add_header X-Clacks-Overhead "GNU Terry Pratchett" always; } } @@ -109,6 +110,7 @@ http { proxy_ignore_headers Cache-Control Set-Cookie; add_header X-Cache-Status $upstream_cache_status; + add_header X-Clacks-Overhead "GNU Terry Pratchett" always; } } -- 2.50.1 (Apple Git-155) From c54be5486c96d67315cba43bbe5e3821f54e81f6 Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Thu, 12 Feb 2026 17:07:41 -0800 Subject: [PATCH 2/2] Add X-Clacks-Overhead to nginx examples in expose-service-publicly guide Co-Authored-By: Claude Opus 4.6 --- docs/how-to/expose-service-publicly.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/how-to/expose-service-publicly.md b/docs/how-to/expose-service-publicly.md index 49b825f..489be7f 100644 --- a/docs/how-to/expose-service-publicly.md +++ b/docs/how-to/expose-service-publicly.md @@ -229,6 +229,7 @@ http { proxy_ignore_headers Cache-Control Set-Cookie; add_header X-Cache-Status $upstream_cache_status; + add_header X-Clacks-Overhead "GNU Terry Pratchett" always; } } @@ -454,6 +455,7 @@ server { proxy_ignore_headers Cache-Control Set-Cookie; add_header X-Cache-Status $upstream_cache_status; + add_header X-Clacks-Overhead "GNU Terry Pratchett" always; } } ``` @@ -503,6 +505,7 @@ server { proxy_cache_key $host$uri; add_header X-Cache-Status $upstream_cache_status; + add_header X-Clacks-Overhead "GNU Terry Pratchett" always; } } ``` -- 2.50.1 (Apple Git-155)