Skip to content

Commit

Permalink
remove usage of catalogd InsecureSkipTLSVerify
Browse files Browse the repository at this point in the history
  • Loading branch information
joelanford committed Sep 17, 2024
1 parent 2cfcff3 commit 9108f98
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
5 changes: 2 additions & 3 deletions test/e2e/e2e_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,8 @@ func createTestCatalog(ctx context.Context, name string, imageRef string) (*cata
Source: catalogd.CatalogSource{
Type: catalogd.SourceTypeImage,
Image: &catalogd.ImageSource{
Ref: imageRef,
InsecureSkipTLSVerify: true,
PollInterval: &metav1.Duration{Duration: time.Second},
Ref: imageRef,
PollInterval: &metav1.Duration{Duration: time.Second},
},
},
},
Expand Down
3 changes: 1 addition & 2 deletions test/extension-developer-e2e/extension_developer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ func TestExtensionDeveloper(t *testing.T) {
Source: catalogd.CatalogSource{
Type: catalogd.SourceTypeImage,
Image: &catalogd.ImageSource{
Ref: os.Getenv("CATALOG_IMG"),
InsecureSkipTLSVerify: true,
Ref: os.Getenv("CATALOG_IMG"),
},
},
},
Expand Down

0 comments on commit 9108f98

Please sign in to comment.