Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Network 점검 할 수 있는 Pod가 필요해요.

Info
Code Block
kubectl run -it --image=jrecord/nettools nettools --restart=Never --namespace=default
Code Block
apiVersion: v1
kind: Pod
metadata:
  name: nettools
  namespace: default
spec:
  containers:
  - name: nettools
    image: jrecord/nettools:latest
    command:
      - sleep
      - "3600"
    imagePullPolicy: IfNotPresent
  restartPolicy: Never