k8 kompose photoview

This commit is contained in:
Waylon Walker 2023-10-29 18:04:56 -05:00
parent b3219b2b95
commit 2fb1980e28
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4
6 changed files with 350 additions and 26 deletions

14
photoview/job.yaml Normal file
View file

@ -0,0 +1,14 @@
apiVersion: batch/v1
kind: Job
metadata:
name: myjob
spec:
ttlSecondsAfterFinished: 100
template:
spec:
containers:
- name: myjobcontainer
image: busybox
command: ["ls", "/"]
restartPolicy: Never
backoffLimit: 1