View gist:b347d5a2da1987b458ec941cc9895a85
version: "3" | |
services: | |
openhab: | |
image: openhab/openhab:2.5.5 | |
restart: always | |
network_mode: "host" | |
volumes: | |
- "/etc/localtime:/etc/localtime:ro" | |
- "/etc/hosts:/etc/hosts" |
View pod-deleter.yaml
apiVersion: batch/v1beta1 | |
kind: CronJob | |
metadata: | |
name: your-cron | |
spec: | |
schedule: "0 0 */2 * *" | |
concurrencyPolicy: Forbid | |
jobTemplate: | |
spec: | |
template: |