Skip to content

Commit

Permalink
Fix name of registry
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsauter committed Sep 22, 2023
1 parent 8e6fb6a commit 8cce2ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/deploy-helm/skopeo.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func (d *deployHelm) copyImage(imageArtifact artifact.Image, destRegistryToken s
srcRegistryTLSVerify := d.opts.srcRegistryTLSVerify
// TLS verification of the KinD registry is not possible at the moment as
// requests error out with "server gave HTTP response to HTTPS client".
if strings.HasPrefix(imageArtifact.Registry, "kind-registry.kind") {
if strings.HasPrefix(imageArtifact.Registry, "ods-pipeline-registry.kind") {
srcRegistryTLSVerify = false
destRegistryTLSVerify = false
}
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/helm_deploy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (

const (
localRegistry = "localhost:5000"
kindRegistry = "kind-registry.kind:5000"
kindRegistry = "ods-pipeline-registry.kind:5000"
)

type imageImportParams struct {
Expand Down

0 comments on commit 8cce2ec

Please sign in to comment.