From b1f5cefe91ce5e5479397017d08c22ef218b0e15 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 17 Sep 2024 09:56:34 +0200 Subject: [PATCH] :seedling: Bump github.com/operator-framework/catalogd from 0.26.0 to 0.27.0 (#1268) * :seedling: Bump github.com/operator-framework/catalogd Bumps [github.com/operator-framework/catalogd](https://github.com/operator-framework/catalogd) from 0.26.0 to 0.27.0. - [Release notes](https://github.com/operator-framework/catalogd/releases) - [Changelog](https://github.com/operator-framework/catalogd/blob/main/.goreleaser.yml) - [Commits](https://github.com/operator-framework/catalogd/compare/v0.26.0...v0.27.0) --- updated-dependencies: - dependency-name: github.com/operator-framework/catalogd dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * remove usage of catalogd InsecureSkipTLSVerify; regen docs --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Joe Lanford --- docs/refs/api/catalogd-api-reference.md | 2 -- go.mod | 2 +- go.sum | 4 ++-- test/e2e/e2e_suite_test.go | 5 ++--- test/extension-developer-e2e/extension_developer_test.go | 3 +-- 5 files changed, 6 insertions(+), 10 deletions(-) diff --git a/docs/refs/api/catalogd-api-reference.md b/docs/refs/api/catalogd-api-reference.md index 89d130a9f..89a72ffd5 100644 --- a/docs/refs/api/catalogd-api-reference.md +++ b/docs/refs/api/catalogd-api-reference.md @@ -132,9 +132,7 @@ _Appears in:_ | Field | Description | Default | Validation | | --- | --- | --- | --- | | `ref` _string_ | ref contains the reference to a container image containing Catalog contents. | | | -| `pullSecret` _string_ | pullSecret contains the name of the image pull secret in the namespace that catalogd is deployed. | | | | `pollInterval` _[Duration](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.31/#duration-v1-meta)_ | pollInterval indicates the interval at which the image source should be polled for new content,
specified as a duration (e.g., "5m", "1h", "24h", "etc".). Note that PollInterval may not be
specified for a catalog image referenced by a sha256 digest. | | Format: duration
| -| `insecureSkipTLSVerify` _boolean_ | insecureSkipTLSVerify indicates that TLS certificate validation should be skipped.
If this option is specified, the HTTPS protocol will still be used to
fetch the specified image reference.
This should not be used in a production environment. | | | #### ResolvedCatalogSource diff --git a/go.mod b/go.mod index e241b0531..259b4f4d1 100644 --- a/go.mod +++ b/go.mod @@ -18,7 +18,7 @@ require ( github.com/onsi/gomega v1.34.2 github.com/opencontainers/go-digest v1.0.0 github.com/operator-framework/api v0.27.0 - github.com/operator-framework/catalogd v0.26.0 + github.com/operator-framework/catalogd v0.27.0 github.com/operator-framework/helm-operator-plugins v0.5.0 github.com/operator-framework/operator-registry v1.47.0 github.com/spf13/pflag v1.0.5 diff --git a/go.sum b/go.sum index b991c8398..21504d954 100644 --- a/go.sum +++ b/go.sum @@ -537,8 +537,8 @@ github.com/openshift/crd-schema-checker v0.0.0-20240404194209-35a9033b1d11 h1:eT github.com/openshift/crd-schema-checker v0.0.0-20240404194209-35a9033b1d11/go.mod h1:EmVJt97N+pfWFsli/ipXTBZqSG5F5KGQhm3c3IsGq1o= github.com/operator-framework/api v0.27.0 h1:OrVaGKZJvbZo58HTv2guz7aURkhVKYhFqZ/6VpifiXI= github.com/operator-framework/api v0.27.0/go.mod h1:lg2Xx+S8NQWGYlEOvFwQvH46E5EK5IrAIL7HWfAhciM= -github.com/operator-framework/catalogd v0.26.0 h1:RDzNEv631o7WgkXGfFrOCiFBaBMwK621/vinRuOS2LI= -github.com/operator-framework/catalogd v0.26.0/go.mod h1:pR03BacyPJPeVk6KM5OW6CLOoqkHzvyncQSZmiO3+IQ= +github.com/operator-framework/catalogd v0.27.0 h1:KYQs8RZTppbVidcCboicL+W1Ch2UzyGTq6uqaM73MkY= +github.com/operator-framework/catalogd v0.27.0/go.mod h1:SFRcc/UT1hrMiONDJclSGmENLBHgvB/i/7AkBxiMvrM= github.com/operator-framework/helm-operator-plugins v0.5.0 h1:qph2OoECcI9mpuUBtOsWOMgvpx52mPTTSvzVxICsT04= github.com/operator-framework/helm-operator-plugins v0.5.0/go.mod h1:yVncrZ/FJNqedMil+055fk6sw8aMKRrget/AqGM0ig0= github.com/operator-framework/operator-lib v0.15.0 h1:0QeRM4PMtThqINpcFGCEBnIV3Z8u7/8fYLEx6mUtdcM= diff --git a/test/e2e/e2e_suite_test.go b/test/e2e/e2e_suite_test.go index 539260e98..b292c4653 100644 --- a/test/e2e/e2e_suite_test.go +++ b/test/e2e/e2e_suite_test.go @@ -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}, }, }, }, diff --git a/test/extension-developer-e2e/extension_developer_test.go b/test/extension-developer-e2e/extension_developer_test.go index 91e7391a9..2db90b674 100644 --- a/test/extension-developer-e2e/extension_developer_test.go +++ b/test/extension-developer-e2e/extension_developer_test.go @@ -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"), }, }, },