-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcaelundas-production.yaml
More file actions
74 lines (61 loc) · 1.56 KB
/
caelundas-production.yaml
File metadata and controls
74 lines (61 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# Caelundas Production Environment Configuration
# Use this file when deploying the caelundas application to production
# Example: helm install -f values/base.yaml -f values/caelundas-production.yaml
#
# Note: Release names are auto-generated using git commit + timestamp
# This allows multiple jobs to run concurrently with separate PVCs
nameOverride: caelundas
# fullnameOverride removed - using dynamic release names instead
# Metadata for tracking job provenance
metadata:
gitCommit: "" # Set via --set during deployment
timestamp: "" # Set via --set during deployment
image:
repository: ghcr.io/jimmypaolini/caelundas
pullPolicy: Always
tag: 1.0.0
job:
backoffLimit: 3
completions: 1
parallelism: 1
ttlSecondsAfterFinished: 86400
# Environment variables
env:
# 🗺️ Location Configuration
- name: LATITUDE
value: "39.949309"
- name: LONGITUDE
value: "-75.17169"
# 📆 Date Range Configuration
- name: START_DATE
value: 2025-01-01
- name: END_DATE
value: 2025-12-31
# 📤 Output Configuration
- name: OUTPUT_DIRECTORY
value: /app/output
# 🔄 Retry Configuration
- name: MAX_RETRIES
value: "5"
- name: INITIAL_DELAY_MS
value: "1000"
- name: MAX_DELAY_MS
value: "30000"
- name: BACKOFF_MULTIPLIER
value: "2"
persistence:
enabled: true
storageClassName: linode-block-storage-retain
accessMode: ReadWriteOnce
size: 1Gi
mountPath: /app/output
resources:
limits:
cpu: 500m
memory: 512Mi
requests:
cpu: 250m
memory: 256Mi
nodeSelector: {}
tolerations: []
affinity: {}