Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion provisioning/image_cache.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func imageCacheConfig(targetNamespace string, config metal3iov1alpha1.Provisioni
// See https://github.com/openshift/ironic-rhcos-downloader for more details
cacheURL := url.URL{
Scheme: "http",
Host: net.JoinHostPort(fmt.Sprintf("%s.%s", stateService, targetNamespace),
Host: net.JoinHostPort(fmt.Sprintf("%s.%s.svc.cluster.local", stateService, targetNamespace),
baremetalHttpPort),
Path: fmt.Sprintf("/images/%s/%s", imageName, imageName),
}
Expand Down