getting "Sending fatal alert AccessDenied on startup" #5172
-
Hi, Linkerd proxy version: Error log in application: Linkerd-proxy log:
Additional information: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
@sumit-joshi-mt Does your application start sending requests immediately on startup? If so, it's possible that it's trying to do so before the proxy sidecar has initialized. This is a fundamental issue with Kubernetes -- there is no way to enforce ordering around process startup. We're eager for kubernetes to provide better primitives for sidecar containers, but in the meantime, you might be able to use |
Beta Was this translation helpful? Give feedback.
@sumit-joshi-mt Does your application start sending requests immediately on startup? If so, it's possible that it's trying to do so before the proxy sidecar has initialized. This is a fundamental issue with Kubernetes -- there is no way to enforce ordering around process startup. We're eager for kubernetes to provide better primitives for sidecar containers, but in the meantime, you might be able to use
linkerd-await
to help your process wait until the proxy has been initialized.