mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-09 01:16:55 +00:00
* feat: Add Manifest Index to ImageRegistry context Signed-off-by: Netanel Kadosh <kadoshnetanel@gmail.com> * test: adding manifest list tests Signed-off-by: Netanel Kadosh <kadoshnetanel@gmail.com> --------- Signed-off-by: Netanel Kadosh <kadoshnetanel@gmail.com> Co-authored-by: shuting <shuting@nirmata.com>
36 lines
607 B
YAML
36 lines
607 B
YAML
---
|
|
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: test-pod-with-non-root-user-image
|
|
spec:
|
|
containers:
|
|
- name: solr
|
|
image: solr
|
|
---
|
|
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: test-pod-with-trusted-registry
|
|
spec:
|
|
containers:
|
|
- name: kyverno
|
|
image: ghcr.io/kyverno/kyverno:v1.7.3
|
|
---
|
|
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: test-pod-with-single-arch-index
|
|
spec:
|
|
containers:
|
|
- name: solr-single-arch
|
|
image: solr:6
|
|
---
|
|
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: test-pod-with-single-arch-no-index
|
|
spec:
|
|
containers:
|
|
- name: no-index
|
|
image: ghcr.io/kyverno/test-verify-image:signed
|