How can I run command line arguments in Kubernetes deployments?
I trird like this, but the deployment failed
   spec:
        containers:
          - args:
              - /bin/sh
              - '-c'
              - touch /tmp/healthy; touch /tmp/liveness
            env:
You can run command line arguments in Kubernetes deployments using "kubectl".