Jesse Hu
Jesse Hu
Thank you. The images I need to pull is very small (n KB).
hi @joaopapereira I'm using kapp-controller 0.44.6. Here is the Package CR yaml which uses image tag name not SHA. ``` apiVersion: data.packaging.carvel.dev/v1alpha1 kind: Package metadata: name: calico.sks.mydomain.com.3.26.3 namespace: sks-system spec:...
Got it. Is it reasonable to let vendir cache a image with tag as well (in addition to sha256) ? A tag is immutable.
Found this PR but it also requires image SHA not tag: [Activate caching of images and bundles by joaopapereira · Pull Request #909 · carvel-dev/kapp-controller](https://github.com/carvel-dev/kapp-controller/pull/909)
Yup, latest tag is not immutable but others should be especially in product env (e.g. docker hub). Or could we have an vendir or kapp-controller option to cache images with...
Thank you all for the guidance. I managed to make the image fetch cache work by switching to image sha256 and optionally adding the following env var VENDIR_MAX_CACHE_SIZE for kapp-controller-sidecarexec...
Hi @100mik, reducing syncPeriod to a lower value (like 30s) will cause kapp-controller consumes more cpu, and is not a good way. My proposed feature is to let kapp-controller watch...
We have a use case for using helm as the 1st templating step and ytt as the 2nd templating step, both use the same secrets. So it does not require...
We call cmd/clusterctl/client.Delete() like this to bypass this issue. ``` retry: if err := s.ensureClusterAPICRDExist(); err != nil { return err } if err := cli.Delete(options); err != nil {...
I have described the root cause in this issue. It's not about deleting in an ordered fashion.