logging: use canonical upstream image names (#433)

rke2's `registries.yaml` already rewrites upstream image names to the artifactapi mirror, so manifests must carry canonical upstream names. Only in-house `artifactapi.k8s.syd1.au.unkin.net/docker-internal/...` images stay explicit (logarchiver/logviewer are untouched).

Changes:
- Point the ClickHouseInstallation and the clickhouse-schema job at `docker.io/clickhouse/clickhouse-server:24.8`.
- Point the logviewer oauth2-proxy cert-combine init container at `docker.io/library/alpine:3`.
- Point the NATS bootstrap job at `docker.io/natsio/nats-box:0.18.0`.
- Point the NATS chart values at `docker.io/library/nats` and `docker.io/natsio/nats-server-config-reloader`.
- Point all three Vector values files (agent, aggregator, vm-ingest) at `docker.io/timberio/vector`.
- Drop the now-wrong "pulled through the artifactapi dockerhub remote" comments in the NATS and vector-agent values.

Tags/digests unchanged and the `repository`/`tag` split is preserved. `kustomize build --enable-helm apps/overlays/au-syd1/logging` differs from main only in those nine image strings.

Extra found, not changed here: `.woodpecker/vector-test.yaml` still pins its CI step image to `artifactapi.k8s.syd1.au.unkin.net/dockerhub/timberio/vector:0.57.0-debian`. That is a Woodpecker step image rather than a namespace manifest, so it is left out to keep this PR to the logging namespace — say the word and I will fix it separately.

Reviewed-on: #433
Co-authored-by: unkin-agent <unkin-agent@unkin.net>
Co-committed-by: unkin-agent <unkin-agent@unkin.net>
This commit was merged in pull request #433.
This commit is contained in:
2026-08-29 21:55:47 +10:00
committed by BenVincent
parent e4d93ef4fe
commit d1085f0ae2
8 changed files with 13 additions and 14 deletions
@@ -87,7 +87,7 @@ spec:
runAsGroup: 101 runAsGroup: 101
containers: containers:
- name: clickhouse - name: clickhouse
image: artifactapi.k8s.syd1.au.unkin.net/dockerhub/clickhouse/clickhouse-server:24.8 image: docker.io/clickhouse/clickhouse-server:24.8
resources: resources:
requests: requests:
cpu: 500m cpu: 500m
+1 -1
View File
@@ -32,7 +32,7 @@ spec:
runAsGroup: 101 runAsGroup: 101
containers: containers:
- name: clickhouse-schema - name: clickhouse-schema
image: artifactapi.k8s.syd1.au.unkin.net/dockerhub/clickhouse/clickhouse-server:24.8 image: docker.io/clickhouse/clickhouse-server:24.8
securityContext: securityContext:
allowPrivilegeEscalation: false allowPrivilegeEscalation: false
readOnlyRootFilesystem: true readOnlyRootFilesystem: true
@@ -34,7 +34,7 @@ spec:
# identity.unkin.net serves a Vault-PKI cert; combine the system roots # identity.unkin.net serves a Vault-PKI cert; combine the system roots
# with the internal CA so oauth2-proxy's OIDC HTTP client trusts it. # with the internal CA so oauth2-proxy's OIDC HTTP client trusts it.
- name: combine-certs - name: combine-certs
image: artifactapi.k8s.syd1.au.unkin.net/dockerhub/library/alpine:3 image: docker.io/library/alpine:3
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
command: command:
- sh - sh
+1 -1
View File
@@ -58,7 +58,7 @@ spec:
runAsGroup: 1000 runAsGroup: 1000
containers: containers:
- name: nats-bootstrap - name: nats-bootstrap
image: artifactapi.k8s.syd1.au.unkin.net/dockerhub/natsio/nats-box:0.18.0 image: docker.io/natsio/nats-box:0.18.0
# nats CLI stats the working directory when loading its response # nats CLI stats the working directory when loading its response
# schemas; under readOnlyRootFilesystem + runAsUser 1000 the image's # schemas; under readOnlyRootFilesystem + runAsUser 1000 the image's
# default WORKDIR is not accessible ("stat .: permission denied"), so # default WORKDIR is not accessible ("stat .: permission denied"), so
@@ -57,10 +57,9 @@ config:
- "_INBOX.>" - "_INBOX.>"
container: container:
# Pulled through the artifactapi dockerhub remote (upstream official nats; # Upstream official nats; no DHI variant available.
# no DHI variant available for nats).
image: image:
repository: artifactapi.k8s.syd1.au.unkin.net/dockerhub/library/nats repository: docker.io/library/nats
tag: 2.14.2-alpine tag: 2.14.2-alpine
env: env:
NATS_ADMIN_PASSWORD: NATS_ADMIN_PASSWORD:
@@ -94,10 +93,10 @@ podTemplate:
annotations: annotations:
configmap.reloader.stakater.com/auto: "true" configmap.reloader.stakater.com/auto: "true"
# Config-reloader sidecar image, also through artifactapi. # Config-reloader sidecar image.
reloader: reloader:
image: image:
repository: artifactapi.k8s.syd1.au.unkin.net/dockerhub/natsio/nats-server-config-reloader repository: docker.io/natsio/nats-server-config-reloader
tag: "0.23.0" tag: "0.23.0"
natsBox: natsBox:
@@ -5,10 +5,10 @@
role: Agent role: Agent
fullnameOverride: vector-agent fullnameOverride: vector-agent
# Pulled through the artifactapi dockerhub remote; distroless-libc (no DHI — # distroless-libc (no DHI — subscription-gated/private-namespace, not reachable
# subscription-gated/private-namespace, not reachable via the anon proxy). # via the anon proxy).
image: image:
repository: artifactapi.k8s.syd1.au.unkin.net/dockerhub/timberio/vector repository: docker.io/timberio/vector
tag: 0.57.0-distroless-libc tag: 0.57.0-distroless-libc
rbac: rbac:
@@ -15,7 +15,7 @@ role: Stateless-Aggregator
fullnameOverride: vector-aggregator fullnameOverride: vector-aggregator
image: image:
repository: artifactapi.k8s.syd1.au.unkin.net/dockerhub/timberio/vector repository: docker.io/timberio/vector
tag: 0.57.0-distroless-libc tag: 0.57.0-distroless-libc
# Horizontal autoscaling on CPU — safe with N replicas on one durable consumer. # Horizontal autoscaling on CPU — safe with N replicas on one durable consumer.
@@ -6,7 +6,7 @@ fullnameOverride: vector-vm-ingest
replicas: 2 replicas: 2
image: image:
repository: artifactapi.k8s.syd1.au.unkin.net/dockerhub/timberio/vector repository: docker.io/timberio/vector
tag: 0.57.0-distroless-libc tag: 0.57.0-distroless-libc
workloadResourceAnnotations: workloadResourceAnnotations: