mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
22 lines
403 B
YAML
22 lines
403 B
YAML
apiVersion: batch/v1
|
|
kind: Job
|
|
metadata:
|
|
name: pi
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: piv0
|
|
image: perl
|
|
command: ["perl"]
|
|
ports:
|
|
- containerPort: 90
|
|
protocol: TCP
|
|
- name: pi
|
|
image: perl
|
|
command: ["perl"]
|
|
- name: piv1
|
|
image: perl
|
|
command: ["perl"]
|
|
restartPolicy: Never
|
|
backoffLimit: 4
|