Testing And Debugging / Test Pod

TrackKubernetes Learning Journey
Current SectionKubernetes on AWS EKS
Progress83 of 271
apiVersion: v1
kind: Pod
metadata:
  name: test-pod
spec:
  containers:
    - name: curl
      image: curlimages/curl:latest
      command: ["sleep", "3600"]
      imagePullPolicy: IfNotPresent