rukpak
rukpak copied to clipboard
RukPak runs in a Kubernetes cluster and defines APIs for installing cloud native content
I noticed several instances of the api-server and etcd running as processes on my host after running the unit test suite several times. This may potentially be a case where...
Introduce a rukpak website for housing documentation: - Use Hugo for serving and generating static sites to remain consistent with rest of operator-framework projects - Determine whether we want to...
Expose a way to repoll Bundle's that have already been marked as unpacked and the resources have been created for non-run-once type operations. This configuration can likely live as a...
There may be some cases where a bundle, as it is defined on image, may not be compatible with a specific cluster for one reason or another (trivially, this could...
Bumps the k8s-dependencies group with 3 updates: [k8s.io/component-base](https://github.com/kubernetes/component-base), [sigs.k8s.io/cli-utils](https://github.com/kubernetes-sigs/cli-utils) and [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime). Updates `k8s.io/component-base` from 0.30.0 to 0.30.3 Commits de3cf26 Update dependencies to v0.30.3 tag See full diff in compare view...
Bumps [github.com/operator-framework/api](https://github.com/operator-framework/api) from 0.24.0 to 0.26.0. Release notes Sourced from github.com/operator-framework/api's releases. v0.26.0 What's Changed Bump github.com/sirupsen/logrus from 1.9.2 to 1.9.3 by @dependabot in operator-framework/api#338 Bump sigs.k8s.io/controller-runtime from 0.18.2 to...
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.33.1 to 1.34.1. Release notes Sourced from github.com/onsi/gomega's releases. v1.34.1 1.34.1 Maintenance Use slices from exp/slices to keep golang 1.20 compat [5e71dcd] v1.34.0 1.34.0 Features Add RoundTripper...
Bumps [github.com/operator-framework/operator-registry](https://github.com/operator-framework/operator-registry) from 1.42.0 to 1.45.0. Release notes Sourced from github.com/operator-framework/operator-registry's releases. v1.45.0 What's Changed Bump github.com/docker/cli from 27.0.2+incompatible to 27.0.3+incompatible by @dependabot in operator-framework/operator-registry#1367 Bump google.golang.org/grpc from 1.64.0 to...
Bumps [carvel.dev/kapp](https://github.com/carvel-dev/kapp) from 0.62.1-0.20240508153820-7d8a03ed7ccf to 0.63.2. Release notes Sourced from carvel.dev/kapp's releases. v0.63.2 Installation By downloading binary from the release For instance, if you are using Linux on an AMD64...
https://github.com/operator-framework/rukpak/blob/bb7cd982ccc0ccdc3162d03e3beb77f367c95a2d/pkg/source/image_registry.go#L27 ```golang package source import ( "archive/tar" "context" "crypto/tls" "errors" "fmt" "io/fs" "net/http" "os" "path/filepath" "strings" "github.com/containerd/containerd/archive" "github.com/google/go-containerregistry/pkg/authn/k8schain" gcrkube "github.com/google/go-containerregistry/pkg/authn/kubernetes" "github.com/google/go-containerregistry/pkg/name" "github.com/google/go-containerregistry/pkg/v1/remote" apimacherrors "k8s.io/apimachinery/pkg/util/errors" "sigs.k8s.io/controller-runtime/pkg/log" rukpakv1alpha2 "github.com/operator-framework/rukpak/api/v1alpha2" rukpakerrors "github.com/operator-framework/rukpak/pkg/errors" )...