Skip to content

Commit a1b23d6

Browse files
Use fully qualified names for image repositories (#128)
* Use fully qualified names for image repositories In kubernetes 1.34+ by default short name resolution is disabled, which means fetching names like gocd/gocd-THING:TAG fail with a ImageInspectError. Use FQDN for all repositories in this chart, update metadata. * Update CHANGELOG for 2.16.1 * Reformat table/tidy links * Test against k8s 1.35 --------- Co-authored-by: Chad Wilson <[email protected]>
1 parent a146830 commit a1b23d6

File tree

5 files changed

+67
-64
lines changed

5 files changed

+67
-64
lines changed

.github/workflows/lint-test.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,11 @@ jobs:
2121
matrix:
2222
k8s: # See https://hub.docker.com/r/kindest/node/tags for valid tags
2323
# For relevant EOLs https://endoflife.date/kubernetes / https://endoflife.date/amazon-eks / https://endoflife.date/azure-kubernetes-service / https://endoflife.date/google-kubernetes-engine
24-
- v1.34.0 # EOL latest 2026-10-26 for GKE
25-
- v1.33.4 # EOL latest 2026-08-03 for GKE
26-
- v1.32.8 # EOL latest 2026-04-11 for GKE
27-
- v1.31.12 # EOL latest 2026-01-16 for GKE
24+
- v1.35.0 # EOL latest 2027-02-28
25+
- v1.34.3 # EOL latest 2026-10-26 for GKE
26+
- v1.33.7 # EOL latest 2026-08-03 for GKE
27+
- v1.32.11 # EOL latest 2026-04-11 for GKE
28+
- v1.31.14 # EOL latest 2026-01-16 for GKE
2829
steps:
2930
- name: Checkout
3031
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0

gocd/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
### 2.16.1
2+
* Use fully qualified names for image repositories for CRI-O 1.34 compatibility (thanks to @12345ieee)
13
### 2.16.0
24
* Remove the docker-registry-artifact-plugin from the pre-installed plugins since it is little used, and as an artifact plugin must be bootstrapped to agents which imposes a start-up speed tax.
35
* Bump kubernetes-elastic-agent plugin to latest patched version (thanks to @chadlwilson)

gocd/Chart.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
name: gocd
33
home: https://www.gocd.org/
4-
version: 2.16.0
4+
version: 2.16.1
55
appVersion: 25.3.0
66
description: GoCD is an open-source continuous delivery server to model and visualize complex workflows with ease.
77
icon: https://gocd.github.io/assets/images/go-icon-black-192x192.png
@@ -16,7 +16,7 @@ keywords:
1616
- continuous-testing
1717
sources:
1818
- https://github.com/gocd/gocd/tree/25.3.0
19-
- https://github.com/gocd/helm-chart/tree/gocd-2.16.0/gocd
19+
- https://github.com/gocd/helm-chart/tree/gocd-2.16.1/gocd
2020
maintainers:
2121
- name: chadlwilson
2222
@@ -27,12 +27,12 @@ annotations:
2727
artifacthub.io/category: integration-delivery
2828
artifacthub.io/images: |
2929
- name: gocd-server
30-
image: gocd/gocd-server:25.3.0
30+
image: docker.io/gocd/gocd-server:25.3.0
3131
platforms:
3232
- linux/amd64
3333
- linux/arm64
3434
- name: gocd-agent-wolfi (optional)
35-
image: gocd/gocd-agent-wolfi:25.3.0
35+
image: docker.io/gocd/gocd-agent-wolfi:25.3.0
3636
platforms:
3737
- linux/amd64
3838
- linux/arm64

0 commit comments

Comments
 (0)