diff --git a/charts/library/common-test/tests/service/load_balancer_test.yaml b/charts/library/common-test/tests/service/load_balancer_test.yaml index b9944db0a73..14362da9b8c 100644 --- a/charts/library/common-test/tests/service/load_balancer_test.yaml +++ b/charts/library/common-test/tests/service/load_balancer_test.yaml @@ -57,7 +57,7 @@ tests: isSubset: path: metadata.annotations content: - metallb.universe.tf/loadBalancerIPs: "1.2.3.4,5.6.7.8" + metallb.io/loadBalancerIPs: "1.2.3.4,5.6.7.8" - it: should pass with type LoadBalancer and available options set set: @@ -153,4 +153,4 @@ tests: isSubset: path: metadata.annotations content: - metallb.universe.tf/loadBalancerIPs: "10.100.200.45" + metallb.io/loadBalancerIPs: "10.100.200.45" diff --git a/charts/library/common-test/tests/service/metadata_test.yaml b/charts/library/common-test/tests/service/metadata_test.yaml index f737ff9d875..461ad339fdb 100644 --- a/charts/library/common-test/tests/service/metadata_test.yaml +++ b/charts/library/common-test/tests/service/metadata_test.yaml @@ -154,7 +154,7 @@ tests: isSubset: path: metadata.annotations content: - metallb.universe.tf/allow-shared-ip: test-release-name-common-test + metallb.io/allow-shared-ip: test-release-name-common-test traefik.ingress.kubernetes.io/service.serversscheme: https - it: should add metallb shared ip annotation without externalTrafficPolicy @@ -186,7 +186,7 @@ tests: isSubset: path: metadata.annotations content: - metallb.universe.tf/allow-shared-ip: test-release-name-common-test + metallb.io/allow-shared-ip: test-release-name-common-test - it: should add metallb shared ip annotation with externalTrafficPolicy set to Cluster set: @@ -218,7 +218,7 @@ tests: isSubset: path: metadata.annotations content: - metallb.universe.tf/allow-shared-ip: test-release-name-common-test + metallb.io/allow-shared-ip: test-release-name-common-test - it: should NOT add metallb shared ip annotation with externalTrafficPolicy set to Local set: diff --git a/charts/library/common/Chart.yaml b/charts/library/common/Chart.yaml index 8102c384c3c..003423631b0 100644 --- a/charts/library/common/Chart.yaml +++ b/charts/library/common/Chart.yaml @@ -48,4 +48,4 @@ sources: - https://hub.docker.com/_/ - https://hub.docker.com/r/mikefarah/yq type: library -version: 25.2.5 +version: 25.2.6 diff --git a/charts/library/common/templates/lib/service/_additionalAnnotations.tpl b/charts/library/common/templates/lib/service/_additionalAnnotations.tpl index eae33e42cb9..1aa7b8ebb27 100644 --- a/charts/library/common/templates/lib/service/_additionalAnnotations.tpl +++ b/charts/library/common/templates/lib/service/_additionalAnnotations.tpl @@ -22,7 +22,7 @@ annotations: The annotations variable reference, to append the MetalLB annotatio {{- if $rootCtx.Values.global.metallb.addServiceAnnotations -}} {{/* If externalTrafficPolicy is not set or is not Local, add the shared key as annotation */}} {{- if ne $objectData.externalTrafficPolicy "Local" -}} - {{- $_ := set $annotations "metallb.universe.tf/allow-shared-ip" $sharedKey -}} + {{- $_ := set $annotations "metallb.io/allow-shared-ip" $sharedKey -}} {{- end -}} {{- if and $objectData.loadBalancerIP $objectData.loadBalancerIPs -}} @@ -52,7 +52,7 @@ annotations: The annotations variable reference, to append the MetalLB annotatio {{- end -}} {{- if $ips -}} - {{- $_ := set $annotations "metallb.universe.tf/loadBalancerIPs" (join "," $ips) -}} + {{- $_ := set $annotations "metallb.io/loadBalancerIPs" (join "," $ips) -}} {{- end -}} {{- end -}} {{- end -}} diff --git a/charts/premium/metallb-config/Chart.yaml b/charts/premium/metallb-config/Chart.yaml index 34e20fe960b..7471bcaf11e 100644 --- a/charts/premium/metallb-config/Chart.yaml +++ b/charts/premium/metallb-config/Chart.yaml @@ -32,6 +32,6 @@ sources: - https://github.com/metallb/metallb - https://github.com/truecharts/charts/tree/master/charts/premium/metallb-config - https://hub.docker.com/_/hello-world - - https://metallb.universe.tf + - https://metallb.io type: application -version: 8.3.1 +version: 8.3.2 diff --git a/charts/premium/metallb-config/docs/setup-guide.md b/charts/premium/metallb-config/docs/setup-guide.md index 813f8d6128e..fe1f44cd822 100644 --- a/charts/premium/metallb-config/docs/setup-guide.md +++ b/charts/premium/metallb-config/docs/setup-guide.md @@ -43,4 +43,4 @@ Run the command `kubectl get svc -A` to verify the IP addresses assigned for eac If you have an IP conflict with a previously assigned address it will show as ``. -For details on other configuration options, please reference the [MetaLB documentation](https://metallb.universe.tf/configuration/). +For details on other configuration options, please reference the [MetaLB documentation](https://metallb.io/configuration/). diff --git a/website/src/content/docs/common/service/LoadBalancer.md b/website/src/content/docs/common/service/LoadBalancer.md index 364dbf86943..7d38329b224 100644 --- a/website/src/content/docs/common/service/LoadBalancer.md +++ b/website/src/content/docs/common/service/LoadBalancer.md @@ -25,7 +25,7 @@ title: LoadBalancer ## `sharedKey` -Sets the shared key in `metallb.universe.tf/allow-shared-ip` **MetalLB** Annotation +Sets the shared key in `metallb.io/allow-shared-ip` **MetalLB** Annotation | | | | ---------- | ------------------------- | @@ -45,7 +45,7 @@ service: ## `loadBalancerIP` -Define the load balancer IP, sets the `metallb.universe.tf/loadBalancerIPs` **MetalLB** annotation. Mutually exclusive with `loadBalancerIPs` +Define the load balancer IP, sets the `metallb.io/loadBalancerIPs` **MetalLB** annotation. Mutually exclusive with `loadBalancerIPs` | | | | ---------- | ------------------------------ | @@ -65,7 +65,7 @@ service: ## `loadBalancerIPs` -Define the load balancer IPs, sets the `metallb.universe.tf/loadBalancerIPs` **MetalLB** annotation. Mutually exclusive with `loadBalancerIP` +Define the load balancer IPs, sets the `metallb.io/loadBalancerIPs` **MetalLB** annotation. Mutually exclusive with `loadBalancerIP` | | | | ---------- | ------------------------------- |