David
David
Hey, I have been trying something similar with windows 2022 on AKS.... so far, same results as you. ``` # ./buildctl --addr tcp://10.0.24.131:1234 build --frontend=dockerfile.v0 --local dockerfile=. --output type=image,name=image:image [+]...
Seeing this as well
Hey guys, Think i found the issue: https://github.com/SparebankenVest/azure-key-vault-to-kubernetes/commit/1e464adf8ca1777e2037801728d8d002cace78f1 ``` podSpec.SecurityContext = &corev1.PodSecurityContext{ RunAsNonRoot: &[]bool{viper.GetBool("webhook_pod_spec_security_context_non_root")}[0], } ``` Iv updated that to be: ``` if viper.GetBool("webhook_pod_spec_security_context_non_root") { podSpec.SecurityContext.RunAsNonRoot = &[]bool{viper.GetBool("webhook_pod_spec_security_context_non_root")}[0] } ```...