Penguin-KarChunTKarChunT

Commands and Arguments

Understand how to use setup commands and arguments.

Usage of commands and arguments

pod.yaml
apiVersion: v1
kind: Pod
metadata:
  name: pod-name
spec:
  containers:
    - name: container-name
      image: ubuntu:22.04
      command: ["sleep"] # entrypoint in Dockerfile
      args: ["10"] # CMD in Dockerfile

On this page