weather nohelm

This commit is contained in:
Waylon Walker 2024-02-13 19:49:50 -06:00
parent 87ad20d355
commit 6d5aa8d441
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4

View file

@ -0,0 +1,27 @@
apiVersion: batch/v1
kind: CronJob
metadata:
name: weather-cronjob
spec:
schedule: "*/1 * * * *"
jobTemplate:
spec:
template:
metadata:
labels:
app: weather-job
spec:
containers:
- name: weather-container
image: busybox
command: ["sh", "-c", "curl 'wttr.in/peoria,il?format=3' >> /logs/weather.log"]
volumeMounts:
- name: logs-volume
mountPath: /logs
subPath: logs
restartPolicy: OnFailure
volumes:
- name: logs-volume
persistentVolumeClaim:
claimName: data
subPath: logs