Skip to content

Commit d1fdd7c

Browse files
authored
build: use correct frr image for metallb (#1102)
**What problem does this PR solve?**: Use the helm values for Metallb images, with this fix: ``` $ make list-images ... quay.io/frrouting/frr:9.1.3 quay.io/metallb/controller:v0.14.9 quay.io/metallb/speaker:v0.14.9 ... ``` **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 d16c99b commit d1fdd7c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

hack/tools/fetch-images/main.go

+2
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,8 @@ func getValuesFileForChartIfNeeded(chartName, carenChartDirectory string) (strin
316316
return tempFile.Name(), nil
317317
case "cosi-controller":
318318
return filepath.Join(carenChartDirectory, "addons", "cosi", "controller", defaultHelmAddonFilename), nil
319+
case "metallb":
320+
return filepath.Join(carenChartDirectory, "addons", "serviceloadbalancer", "metallb", defaultHelmAddonFilename), nil
319321
default:
320322
return "", nil
321323
}

0 commit comments

Comments
 (0)