Commands and Arguments for containers in kubernates
In docker container
For container created with below docker file
Same in Kubernetes
apiVersion: v1
kind: Pod
metadata:
name: testpod
spec:
containers:
- name: test-container
image: ubuntu-hello
command: ["/bin/bash"]
args: ["hello", "world"]
or