Dmitry Semenov
Dmitry Semenov
Yes I got the same issue: https://github.com/kubernetes/kubernetes/issues/104637
I got into the same issue. long-live AWS credentials worked, but short-term credentials received by running ```bash aws-vault add client/aws/master-admin aws-vault exec client/aws/master-admin --debug -- zsh --login terraform apply ```...
so I just faced the same issue by updating kubectl. It seems it is related: ``` ✗ kubectl version Client Version: version.Info{Major:"1", Minor:"22+", GitVersion:"v1.22.6-eks-7d68063", GitCommit:"f24e667e49fb137336f7b064dba897beed639bad", GitTreeState:"clean", BuildDate:"2022-02-23T19:32:14Z", GoVersion:"go1.16.12", Compiler:"gc", Platform:"linux/amd64"}...
and don't forget to do after you update aws cli ``` ✗ aws eks --region us-east-1 update-kubeconfig --name project-staging-eks Updated context arn:aws:eks:us-east-1:xxxx:cluster/project-staging-eks in /home/dmitry/.kube/config ```
@mkilchhofer so I got some errors in logs ``` 2021-09-30T23:35:56Z ERR bitnami/blacksmith-sandox/kubernetes-event-exporter-0.10.0/src/github.com/opsgenie/kubernetes-event-exporter/pkg/kube/watcher.go:72 > Cannot list labels of the object error="applications.argoproj.io \"promtail\" is forbidden: User \"system:serviceaccount:monitoring:kubernetes-event-exporter\" cannot get resource \"applications\" in...
Thanks @mkilchhofer!
I have tried with docker-based approach with Fedora 32, it fails as well ``` ➜ export LIBVIRT_DEFAULT_URI="qemu:///session" ➜ docker run -it --rm \ -e LIBVIRT_DEFAULT_URI \ -v /var/run/libvirt/:/var/run/libvirt/ \ -v...
I got the same issue - EKS 1.21 ``` ➜ k version Client Version: version.Info{Major:"1", Minor:"21", GitVersion:"v1.21.1", GitCommit:"5e58841cce77d4bc13713ad2b91fa0d961e69192", GitTreeState:"clean", BuildDate:"2021-05-12T14:18:45Z", GoVersion:"go1.16.4", Compiler:"gc", Platform:"linux/amd64"} Server Version: version.Info{Major:"1", Minor:"21+", GitVersion:"v1.21.2-eks-0389ca3", GitCommit:"8a4e27b9d88142bbdd21b997b532eb6d493df6d2", GitTreeState:"clean",...
Interesting thing is that if I remove ``` node: nodeSelector: etcd: "true" ``` from the values - then I get a lot more PODS added (where I don't need NFS...
the following is set inside the container: ``` CNB_PLATFORM_API=0.4 CNB_STACK_ID=google CNB_USER_ID=1000 CNB_GROUP_ID=1000 ``` ```bash /cnb/lifecycle/creator \ -app=app \ -project-metadata=/workspace/app/project.toml \ -cache-dir=/cache \ -layers=/layers \ -platform=/platform \ -cache-image="" \ -uid=1000 \...