Open mecampbellsoup opened 6 months ago
it outputs error:
- cloud:pod/cloud-app-worker-auth-65cbb6f9bd-ncr22: container cloud-app-worker-auth-pg-waiter in error: &ContainerStateWaiting{Reason:CreateContainerConfigError,Message:secret "postgres-role-postgres" not found,}
.
I think you forgot to add this role
it outputs error:
- cloud:pod/cloud-app-worker-auth-65cbb6f9bd-ncr22: container cloud-app-worker-auth-pg-waiter in error: &ContainerStateWaiting{Reason:CreateContainerConfigError,Message:secret "postgres-role-postgres" not found,}
. I think you forgot to add this role
Thanks for the suggestion, but unfortunately that isn't related.
(That error happens because this app applies sealed-secrets
- so when I initially helm install
, there's a bit of time lag in which our sealed secrets are applied in the cluster; and then the sealed secrets operator converts them into k8s secrets. Until that process is complete (usually just a few seconds) however we get those errors, but once the secrets are ready helm can complete installation.)
For the purposes of this issue, the only relevant log output is really:
Deployments stabilized in 57.127 seconds
Cleaning up...
- No resources found
I am trying to marry 2 skaffold files we have, one called
cloud-app
which builds our app and deploys it to k8s target cluster usinghelm
deployer, and another calledcloud-app-e2e-test-runner
which is a simple playwright e2e test suite that we typically have deployed usingkubectl
deployer.Here is my desired
skaffold.yaml
where I want to usecloud-app
skaffold as a dependent configuration:The build and deploy steps in
cloud-app
config succeed, but then when it comes time to do thecloud-app-e2e-test-runner
skaffold config, I get an error:Possibly related to https://github.com/GoogleContainerTools/skaffold/issues/8745.
Full stdout logs