Skip to content

Commit

Permalink
Change DefaultIndexImage to UBI (#6726)
Browse files Browse the repository at this point in the history
Description of the change:

Change untar image from busybox to UBI image as #5191

Motivation for the change:

Remove dependency on dockerhub

Signed-off-by: Ivan Kolodiazhnyi <ikolodiazhny@nvidia.com>
  • Loading branch information
e0ne committed May 15, 2024
1 parent af8f58d commit 957ffee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/olm/fbcutil/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const (
// TODO(v2.0.0): pin this image tag to a specific version.
DefaultIndexImage = DefaultIndexImageBase + "latest"
// DefaultInitImage is the default image to be used in the registry init container
DefaultInitImage = "docker.io/library/busybox:1.36.0"
DefaultInitImage = "registry.access.redhat.com/ubi8:8.9"
)

// BundleDeclcfg represents a minimal File-Based Catalog.
Expand Down
2 changes: 1 addition & 1 deletion website/content/en/docs/cli/operator-sdk_run_bundle.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ operator-sdk run bundle <bundle-image> [flags]

```
--ca-secret-name string Name of a generic secret containing a PEM root certificate file required to pull bundle images. This secret *must* be in the namespace that this command is configured to run in, and the file *must* be encoded under the key "cert.pem"
--decompression-image string image used in an init container in the registry pod to decompress the compressed catalog contents. cat and gzip binaries are expected to exist in the PATH (default "docker.io/library/busybox:1.36.0")
--decompression-image string image used in an init container in the registry pod to decompress the compressed catalog contents. cat and gzip binaries are expected to exist in the PATH (default "registry.access.redhat.com/ubi8:8.9")
-h, --help help for bundle
--index-image string index image in which to inject bundle (default "quay.io/operator-framework/opm:latest")
--install-mode InstallModeValue install mode
Expand Down

0 comments on commit 957ffee

Please sign in to comment.