This product is not supported for your selected
Datadog site. (
).
이 페이지는 아직 영어로 제공되지 않습니다. 번역 작업 중입니다.
현재 번역 프로젝트에 대한 질문이나 피드백이 있으신 경우
언제든지 연락주시기 바랍니다.Id: 583053b7-e632-46f0-b989-f81ff8045385
Cloud Provider: k8s
Framework: Kubernetes
Severity: Low
Category: Supply-Chain
Learn More
Description
The image tag must be defined and not be empty or latest
.
Compliant Code Examples
apiVersion: v1
kind: Pod
metadata:
name: private-image-test-1
spec:
containers:
- name: uses-private-image
image: nginx:1.21
imagePullPolicy: Always
command: [ "echo", "SUCCESS" ]
Non-Compliant Code Examples
apiVersion: v1
kind: Pod
metadata:
name: private-image-test-3
spec:
containers:
- name: uses-private-image-container
image: nginx
imagePullPolicy: Always
command: [ "echo", "SUCCESS" ]
---
apiVersion: v1
kind: Pod
metadata:
name: private-image-test-33
spec:
containers:
- name: uses-private-image-container
image: nginx:latest
imagePullPolicy: Always
command: [ "echo", "SUCCESS" ]