mirror of
https://github.com/nold360/hive-apps
synced 2024-11-14 17:56:38 +00:00
73 lines
1.5 KiB
YAML
73 lines
1.5 KiB
YAML
apiVersion: batch/v1
|
|
kind: CronJob
|
|
metadata:
|
|
name: cloudflare-ddns-gnu
|
|
namespace: core
|
|
spec:
|
|
schedule: "*/15 * * * *"
|
|
successfulJobsHistoryLimit: 3
|
|
failedJobsHistoryLimit: 3
|
|
jobTemplate:
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: cloudflare-ddns
|
|
image: mirioeggmann/cloudflare-ddns:v0.5.1
|
|
envFrom:
|
|
- secretRef:
|
|
name: cloudflare-ddns-gnu
|
|
restartPolicy: OnFailure
|
|
---
|
|
apiVersion: ricoberger.de/v1alpha1
|
|
kind: VaultSecret
|
|
metadata:
|
|
annotations:
|
|
name: cloudflare-ddns-gnu
|
|
namespace: core
|
|
spec:
|
|
keys:
|
|
- API_TOKEN
|
|
- NAME
|
|
- RECORD_ID
|
|
- ZONE_ID
|
|
- PROXIED
|
|
path: heqet/core/cloudflare-ddns-gnu
|
|
type: Opaque
|
|
---
|
|
apiVersion: batch/v1
|
|
kind: CronJob
|
|
metadata:
|
|
name: cloudflare-ddns-nold
|
|
namespace: core
|
|
spec:
|
|
schedule: "*/15 * * * *"
|
|
successfulJobsHistoryLimit: 3
|
|
failedJobsHistoryLimit: 3
|
|
jobTemplate:
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: cloudflare-ddns
|
|
image: mirioeggmann/cloudflare-ddns:v0.5.1
|
|
envFrom:
|
|
- secretRef:
|
|
name: cloudflare-ddns-nold
|
|
restartPolicy: OnFailure
|
|
---
|
|
apiVersion: ricoberger.de/v1alpha1
|
|
kind: VaultSecret
|
|
metadata:
|
|
annotations:
|
|
name: cloudflare-ddns-nold
|
|
namespace: core
|
|
spec:
|
|
keys:
|
|
- API_TOKEN
|
|
- NAME
|
|
- RECORD_ID
|
|
- ZONE_ID
|
|
- PROXIED
|
|
path: heqet/core/cloudflare-ddns-nold
|
|
type: Opaque
|