Change linkerd-proxy container name #10214
Unanswered
realhuseyn
asked this question in
Help
Replies: 1 comment 2 replies
-
@realhuseyn we don't support changing the name of the container. Although containers are started concurrently by the kubelet, linkerd-proxy has a postStart hook to ensure it starts up before the application container. It needs to be declared first so that the hook blocks your application container from starting. This ensures the proxy is up before your application so traffic won't fail. Even if you did manage to re-order them, that wouldn't achieve much on its own, containers would still start at the same time without the use of hooks. Why do you need them re-ordered? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello. I have a question. Can we change the default container name of the injected proxy container (linkerd-proxy). I didn't find any configuration related to it. My purpose is to reorder containers for my pods. I want that the first container of my pod is my app container, not linkerd-proxy container.
Beta Was this translation helpful? Give feedback.
All reactions