Skip to content

Commit e0ec4be

Browse files
authored
fix: registry addon headless service port (#1159)
**What problem does this PR solve?**: Updates chart version that has a fix that correctly sets headless service port equal to pod's port. Usually clients would explicitly set the port directly when connecting to the headless service, but this does fix using `kubectl port-forward` **Which issue(s) this PR fixes**: Fixes # **How Has This Been Tested?**: <!-- Please describe the tests that you ran to verify your changes. Provide output from the tests and any manual steps needed to replicate the tests. --> ``` $ kubectl port-forward --address=127.0.0.1 --namespace registry-system service/cncf-distribution-registry-docker-registry-headless https Forwarding from 127.0.0.1:5000 -> 5000 Handling connection for 5000 $ crane copy nginx:stable 127.0.0.1:5000/library/nginx:dkoshkin --insecure 2025/06/13 13:51:08 Copying from nginx:stable to 127.0.0.1:5000/library/nginx:dkoshkin 2025/06/13 13:51:11 pushed blob: sha256:6b8146f9616cc4005c1b785be80e6c75d2fc745cdf9d7f12e1aacf0449faada7 ... ``` **Special notes for your reviewer**: <!-- Use this to provide any additional information to the reviewers. This may include: - Best way to review the PR. - Where the author wants the most review attention on. - etc. -->
1 parent f811fd7 commit e0ec4be

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

charts/cluster-api-runtime-extensions-nutanix/templates/helm-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ data:
2525
RepositoryURL: '{{ if .Values.helmRepository.enabled }}oci://helm-repository.{{ .Release.Namespace }}.svc/charts{{ else }}https://kubernetes.github.io/autoscaler{{ end }}'
2626
cncf-distribution-registry: |
2727
ChartName: docker-registry
28-
ChartVersion: 2.3.4
28+
ChartVersion: 2.3.5
2929
RepositoryURL: '{{ if .Values.helmRepository.enabled }}oci://helm-repository.{{ .Release.Namespace }}.svc/charts{{ else }}https://mesosphere.github.io/charts/staging/{{ end }}'
3030
cosi-controller: |
3131
ChartName: cosi

hack/addons/helm-chart-bundler/repos.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ repositories:
3535
repoURL: https://mesosphere.github.io/charts/staging/
3636
charts:
3737
docker-registry:
38-
- 2.3.4
38+
- 2.3.5
3939
local-path-provisioner:
4040
repoURL: https://charts.containeroo.ch
4141
charts:

hack/addons/kustomize/cncf-distribution-registry/kustomization.yaml.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ helmCharts:
1818
- name: docker-registry
1919
repo: https://mesosphere.github.io/charts/staging/
2020
releaseName: cncf-distribution-registry
21-
version: 2.3.4
21+
version: 2.3.5
2222
valuesFile: helm-values.yaml
2323
includeCRDs: true
2424
skipTests: true

0 commit comments

Comments
 (0)