Locales in kubectl exec
When writing äëöüç in after you've entered a container with "kubectl exec -it x -- bash" you'll probably notice the characters show no response. You can easily fix this by redeploying the pod with the following environment variables:
env:
- name: LC_ALL
value: "C.UTF-8"
- name: LANG
value: "C.UTF-8"