Skip to content

Commit

Permalink
🌱 Bump github.com/operator-framework/catalogd from 0.26.0 to 0.27.0 (#…
Browse files Browse the repository at this point in the history
…1268)

* 🌱 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](operator-framework/catalogd@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] <[email protected]>

* remove usage of catalogd InsecureSkipTLSVerify; regen docs

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joe Lanford <[email protected]>
  • Loading branch information
dependabot[bot] and joelanford authored Sep 17, 2024
1 parent 33f6abf commit b1f5cef
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 10 deletions.
2 changes: 0 additions & 2 deletions docs/refs/api/catalogd-api-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,<br />specified as a duration (e.g., "5m", "1h", "24h", "etc".). Note that PollInterval may not be<br />specified for a catalog image referenced by a sha256 digest. | | Format: duration <br /> |
| `insecureSkipTLSVerify` _boolean_ | insecureSkipTLSVerify indicates that TLS certificate validation should be skipped.<br />If this option is specified, the HTTPS protocol will still be used to<br />fetch the specified image reference.<br />This should not be used in a production environment. | | |


#### ResolvedCatalogSource
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -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=
Expand Down
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 b1f5cef

Please sign in to comment.