This message was deleted.
# general
s
This message was deleted.
f
So, I had a
replicas
property on my Deployment
spec
and the
template.spec
. It's odd that
pulumi up
has worked until I changed the
livenessProbe
property on a different Deployment.
c
I mean, it’s telling you that your deployment does not actually satisfy the schema.
replicas
does not go in the pod spec, right?
Pulumi is just faithfully reporting the error.
f
It’s just weird that the deployment was working with no errors until the livenessProbe change.
c
i don’t know about that, but the error here seems to tell you what to fix?
did it work?
f
Yes. The concerning part was that I did not receive that message until other, unrelated changes occurred.
c
¯\_(ツ)_/¯
was something in the liveness probe a computed value?
mmm that wouldn’t do it either.
this is a TS error
f
Given it's a TSError, I would've thought it would always fail.
c
I have no idea, but the TS compiler does a lot of guessing.
It’s more like a heuristic engine than a safe type checker.
f
I also know that I had several successful deploys with
initialDelaySeconds
set in
readinessProbe.httpGet
instead of just
readinessProbe
.