image: busybox:1.28
           command: ['sh', '-c', 'until nslookup cassandra; do echo waiting for cassandra to start ...; sleep 2; done']
       containers:
-      - image: "ollivier/clearwater-astaire"
+      - image: "ollivier/clearwater-astaire:hunter"
         name: astaire
         ports:
         - containerPort: 22
           preStop:
             exec:
               command: ["/bin/bash", "-c", "/usr/bin/pre-stop"]
-      - image: busybox
+      - image: busybox:1.28
         name: tailer
         command: [ "tail", "-F", "/var/log/astaire/astaire_current.txt" ]
         volumeMounts:
 
           image: busybox:1.28
           command: ['sh', '-c', 'until nslookup sprout; do echo waiting for sprout to start ...; sleep 2; done']
       containers:
-      - image: "ollivier/clearwater-bono"
+      - image: "ollivier/clearwater-bono:hunter"
         name: bono
         ports:
         - containerPort: 22
         volumeMounts:
         - name: bonologs
           mountPath: /var/log/bono
-      - image: busybox
+      - image: busybox:1.28
         name: tailer
         command: [ "tail", "-F", "/var/log/bono/bono_current.txt" ]
         volumeMounts:
 
           image: busybox:1.28
           command: ['sh', '-c', 'until nslookup etcd; do echo waiting for etcd to start ...; sleep 2; done']
       containers:
-      - image: "ollivier/clearwater-cassandra"
+      - image: "ollivier/clearwater-cassandra:hunter"
         name: cassandra
         ports:
         - containerPort: 22
 
           image: busybox:1.28
           command: ['sh', '-c', 'until nslookup cassandra; do echo waiting for cassandra to start ...; sleep 2; done']
       containers:
-      - image: "ollivier/clearwater-chronos"
+      - image: "ollivier/clearwater-chronos:hunter"
         name: chronos
         ports:
         - containerPort: 22
           preStop:
             exec:
               command: ["/bin/bash", "-c", "/usr/bin/pre-stop"]
-      - image: busybox
+      - image: busybox:1.28
         name: tailer
         command: [ "tail", "-F", "/var/log/chronos/chronos_current.txt" ]
         volumeMounts:
 
           image: busybox:1.28
           command: ['sh', '-c', 'until nslookup sprout; do echo waiting for sprout to start ...; sleep 2; done']
       containers:
-      - image: "ollivier/clearwater-ellis"
+      - image: "ollivier/clearwater-ellis:hunter"
         name: ellis
         ports:
         - containerPort: 22
 
           image: busybox:1.28
           command: ['sh', '-c', 'until nslookup cassandra; do echo waiting for cassandra to start ...; sleep 2; done']
       containers:
-      - image: "ollivier/clearwater-homer"
+      - image: "ollivier/clearwater-homer:hunter"
         name: homer
         ports:
         - containerPort: 22
 
           image: busybox:1.28
           command: ['sh', '-c', 'until nslookup astaire; do echo waiting for astaire to start ...; sleep 2; done']
       containers:
-      - image: "ollivier/clearwater-homestead"
+      - image: "ollivier/clearwater-homestead:hunter"
         name: homestead
         ports:
         - containerPort: 22
         volumeMounts:
         - name: homesteadlogs
           mountPath: /var/log/homestead
-      - image: busybox
+      - image: busybox:1.28
         name: tailer
         command: [ "tail", "-F", "/var/log/homestead/homestead_current.txt" ]
         volumeMounts:
 
           image: busybox:1.28
           command: ['sh', '-c', 'until nslookup homestead; do echo waiting for homestead to start ...; sleep 2; done']
       containers:
-      - image: "ollivier/clearwater-homestead-prov"
+      - image: "ollivier/clearwater-homestead-prov:hunter"
         name: homestead-prov
         ports:
         - containerPort: 22
 
     """
     watch_timeout = 1200
     metadata_name = "env-vars"
-    test_image_name = "ollivier/clearwater-live-test"
+    test_image_name = "ollivier/clearwater-live-test:hunter"
     test_container_name = "live-test"
 
     __logger = logging.getLogger(__name__)
 
           image: busybox:1.28
           command: ['sh', '-c', 'until nslookup cassandra; do echo waiting for cassandra to start ...; sleep 2; done']
       containers:
-      - image: "ollivier/clearwater-ralf"
+      - image: "ollivier/clearwater-ralf:hunter"
         name: ralf
         ports:
         - containerPort: 22
         volumeMounts:
         - name: ralflogs
           mountPath: /var/log/ralf
-      - image: busybox
+      - image: busybox:1.28
         name: tailer
         command: [ "tail", "-F", "/var/log/ralf/ralf_current.txt" ]
         volumeMounts:
 
           image: busybox:1.28
           command: ['sh', '-c', 'until nslookup homestead; do echo waiting for homestead to start ...; sleep 2; done']
       containers:
-      - image: "ollivier/clearwater-sprout"
+      - image: "ollivier/clearwater-sprout:hunter"
         name: sprout
         ports:
         - containerPort: 22
         volumeMounts:
         - name: sproutlogs
           mountPath: /var/log/sprout
-      - image: busybox
+      - image: busybox:1.28
         name: tailer
         command: [ "tail", "-F", "/var/log/sprout/sprout_current.txt" ]
         volumeMounts:
 
   - title: Run a single workload with create/read/delete pod
     scenario:
       Kubernetes.create_and_delete_pod:
-        image: kubernetes/pause
+        image: k8s.gcr.io/pause:3.3
     runner:
       constant:
         concurrency: {{ concurrency }}
   - title: Run a single workload with create/read/delete replication controller
     scenario:
       Kubernetes.create_and_delete_replication_controller:
-        image: kubernetes/pause
+        image: k8s.gcr.io/pause:3.3
         replicas: 2
     runner:
       constant:
   - title: Run a single workload with create/scale/delete replication controller
     scenario:
       Kubernetes.create_scale_and_delete_replication_controller:
-        image: kubernetes/pause
+        image: k8s.gcr.io/pause:3.3
         replicas: 2
         scale_replicas: 3
     runner:
   - title: Run a single workload with create/read/delete replicaset
     scenario:
       Kubernetes.create_and_delete_replicaset:
-        image: kubernetes/pause
+        image: k8s.gcr.io/pause:3.3
         replicas: 1
     runner:
       constant:
   - title: Run a single workload with create/scale/delete replicaset
     scenario:
       Kubernetes.create_scale_and_delete_replicaset:
-        image: kubernetes/pause
+        image: k8s.gcr.io/pause:3.3
         replicas: 1
         scale_replicas: 2
     runner:
       Run a single workload with create/read/delete pod with emptyDir volume
     scenario:
       Kubernetes.create_and_delete_pod_with_emptydir_volume:
-        image: kubernetes/pause
+        image: k8s.gcr.io/pause:3.3
         mount_path: /opt/check
     runner:
       constant:
       volume
     scenario:
       Kubernetes.create_and_delete_pod_with_emptydir_volume:
-        image: busybox
+        image: busybox:1.28
         command:
           - sleep
           - "3600"
   - title: Run a single workload with create/read/delete pod with secret volume
     scenario:
       Kubernetes.create_and_delete_pod_with_secret_volume:
-        image: busybox
+        image: busybox:1.28
         command:
           - sleep
           - "3600"
   - title: Run a single workload with create/check/delete pod with secret volume
     scenario:
       Kubernetes.create_and_delete_pod_with_secret_volume:
-        image: busybox
+        image: busybox:1.28
         command:
           - sleep
           - "3600"
       volume
     scenario:
       Kubernetes.create_and_delete_pod_with_hostpath_volume:
-        image: busybox
+        image: busybox:1.28
         command:
           - sleep
           - "3600"
       Run a single workload with create/read/delete pod with configMap volume
     scenario:
       Kubernetes.create_and_delete_pod_with_configmap_volume:
-        image: busybox
+        image: busybox:1.28
         command:
           - "sleep"
           - "3600"
       volume
     scenario:
       Kubernetes.create_and_delete_pod_with_configmap_volume:
-        image: busybox
+        image: busybox:1.28
         command:
           - "sleep"
           - "3600"
   - title: Run a single workload with create/read/delete deployment
     scenario:
       Kubernetes.create_and_delete_deployment:
-        image: kubernetes/pause
+        image: k8s.gcr.io/pause:3.3
         replicas: 2
     runner:
       constant:
   - title: Run a single workload with create/rollout/delete deployment
     scenario:
       Kubernetes.create_rollout_and_delete_deployment:
-        image: busybox
+        image: busybox:1.28
         replicas: 1
         command:
           - sleep
   - title: Run a single workload with create/read/delete statefulset
     scenario:
       Kubernetes.create_and_delete_statefulset:
-        image: kubernetes/pause
+        image: k8s.gcr.io/pause:3.3
         replicas: 2
     runner:
       constant:
   - title: Run a single workload with create/scale/delete statefulset
     scenario:
       Kubernetes.create_scale_and_delete_statefulset:
-        image: kubernetes/pause
+        image: k8s.gcr.io/pause:3.3
         replicas: 1
         scale_replicas: 2
     runner:
   - title: Run a single workload with create/read/delete job
     scenario:
       Kubernetes.create_and_delete_job:
-        image: busybox
+        image: busybox:1.28
         command:
           - echo
           - "SUCCESS"
 
       hostPID: true
       containers:
         - name: kube-bench
-          image: aquasec/kube-bench
+          image: aquasec/kube-bench:0.3.1
           command: ["kube-bench"]
           volumeMounts:
             - name: var-lib-etcd
 
     spec:
       containers:
       - name: kube-hunter
-        image: aquasec/kube-hunter
-        command: ["kube-hunter"]
+        image: aquasec/kube-hunter:0.3.1
+        command: ["python", "kube-hunter.py"]
         args: ["--pod"]
       restartPolicy: Never
   backoffLimit: 4