Reputation: 5149
Is it possible to simplify this chain that runs on bare metal:
proxy-next-upstream: "error http_502 timeout invalid_header non_idempotent"
Is it possible to simplify this stack?
Upvotes: 1
Views: 95
Reputation: 6040
Yes if you turn nginx into sidecar (deploy in every pod) + remove ingress. Cache is not shared in this case:
Or if you need a common cache - just throw away the ingress:
Upvotes: 2