Skip to content

Commit 2e469a4

Browse files
fix: moving konnector agent(docker, helm) to nutanix repo (#1433)
**What problem does this PR solve?**: - moving konnector agent image to public docker repo from quay - moving konnector agent helm repo to nutanix repo from mesosphere **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. --> **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 74b7050 commit 2e469a4

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

charts/cluster-api-runtime-extensions-nutanix/addons/konnector-agent/values-template.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
agent:
22
name: {{ .AgentName }}
33
image:
4-
repository: quay.io/karbon
5-
name: k8s-agent
4+
privateRegistry: false
65
pc:
76
port: {{ .PrismCentralPort }}
8-
insecure: {{ .PrismCentralInsecure }} #set this to true if PC does not have https enabled
9-
endpoint: {{ .PrismCentralHost }} # eg: ip or fqdn
7+
insecure: {{ .PrismCentralInsecure }}
8+
endpoint: {{ .PrismCentralHost }}
109
k8sClusterName: {{ .ClusterName }}
1110
k8sDistribution: NKP
1211
createSecret: false

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ data:
3737
RepositoryURL: '{{ if .Values.helmRepository.enabled }}oci://helm-repository.{{ .Release.Namespace }}.svc/charts{{ else }}https://mesosphere.github.io/charts/stable/{{ end }}'
3838
konnector-agent: |
3939
ChartName: konnector-agent
40-
ChartVersion: 1.3.2
41-
RepositoryURL: '{{ if .Values.helmRepository.enabled }}oci://helm-repository.{{ .Release.Namespace }}.svc/charts{{ else }}https://mesosphere.github.io/charts/stable{{ end }}'
40+
ChartVersion: 1.3.0
41+
RepositoryURL: '{{ if .Values.helmRepository.enabled }}oci://helm-repository.{{ .Release.Namespace }}.svc/charts{{ else }}https://nutanix.github.io/helm-releases/{{ end }}'
4242
local-path-provisioner-csi: |
4343
ChartName: local-path-provisioner
4444
ChartVersion: 0.0.32

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ repositories:
4242
docker-registry:
4343
- 2.3.5
4444
konnector-agent:
45-
repoURL: https://mesosphere.github.io/charts/stable
45+
repoURL: https://nutanix.github.io/helm-releases/
4646
charts:
4747
konnector-agent:
48-
- 1.3.2
48+
- 1.3.0
4949
local-path-provisioner:
5050
repoURL: https://charts.containeroo.ch
5151
charts:

hack/addons/kustomize/konnector-agent/kustomization.yaml.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ metadata:
1010
helmCharts:
1111
- name: konnector-agent
1212
namespace: ntnx-system
13-
repo: https://mesosphere.github.io/charts/stable
13+
repo: https://nutanix.github.io/helm-releases/
1414
releaseName: konnector-agent
1515
version: ${KONNECTOR_AGENT_VERSION}
1616
includeCRDs: true

make/addons.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export METALLB_CHART_VERSION := 0.15.2
2929

3030
export COSI_CONTROLLER_VERSION := 0.0.1-alpha.5
3131

32-
export KONNECTOR_AGENT_VERSION := 1.3.2
32+
export KONNECTOR_AGENT_VERSION := 1.3.0
3333

3434
.PHONY: addons.sync
3535
addons.sync: $(addprefix update-addon.,calico cilium nfd cluster-autoscaler snapshot-controller local-path-provisioner-csi aws-ebs-csi kube-vip)

0 commit comments

Comments
 (0)