Open zbloss opened 1 year ago
I believe the issue lies with your network, preventing access to gcr.io. To resolve this, consider utilizing kustomization rather than modifying the image on the upstream.
Here's a kustomization file that could solve your problem:
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://raw.githubusercontent.com/reactive-tech/kubegres/v1.17/kubegres.yaml
images:
- name: gcr.io/kubebuilder/kube-rbac-proxy
newName: bitnami/kube-rbac-proxy
Following the Getting Started guide, I'm getting ImagePullBackOff errors for the kubegres-controller-manager when I
kubctl apply -f kubegres.yaml
I've isolated the problem down to the kubegress-controller-manager deployment at
spec.template.spec.containers[0].image==gcr.io/kubebuilder/kube-rbac-proxy:v0.13.0
Swapping this out for the latest (v0.14.0) bitnami image on dockerhub resolves the issue, I'll be fast-following with a PR to make this change.