marekhorecny commented on issue #94: URL: https://github.com/apache/cloudstack-kubernetes-provider/issues/94#issuecomment-5602388804
I had same issue with kubernetes images from cloudstack : [ ] [setup-v1.35.4-calico-x86_64.iso](https://download.cloudstack.org/cks/setup-v1.35.4-calico-x86_64.iso) 2026-05-12 16:05 1.0G [ ] [setup-v1.36.0-calico-x86_64.iso](https://download.cloudstack.org/cks/setup-v1.36.0-calico-x86_64.iso) 2026-05-12 17:23 1.0G Because the fix is planned for 1.3.0 version , temporary workaround is to downgrade image for CCM in deployed kubernetes cluster. `kubectl patch deployment cloud-controller-manager \ -n kube-system \ --type='json' \ -p='[{"op": "replace", "path": "/spec/template/spec/containers/0/image", "value": "apache/cloudstack-kubernetes-provider:v1.1.0"}]'` OR: `kubectl set image deployment/cloud-controller-manager \ -n kube-system \ cloud-controller-manager=apache/cloudstack-kubernetes-provider:v1.1.0` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
