-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelmfile.yaml
More file actions
53 lines (48 loc) · 1.26 KB
/
helmfile.yaml
File metadata and controls
53 lines (48 loc) · 1.26 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
# Helm repositories
repositories:
- name: bitnami
url: https://charts.bitnami.com/bitnami
- name: agones
url: https://agones.dev/chart/stable
- name: nats
url: https://nats-io.github.io/k8s/helm/charts
# Helm releases in deployment order
releases:
# PostgreSQL database for application data
- name: postgresql
namespace: databases
chart: bitnami/postgresql
version: ~18 # Use PostgreSQL 18.x (latest stable)
values:
- values/postgresql.values.yaml
# Wait for PostgreSQL to be ready before proceeding
wait: true
timeout: 300
# Agones game server hosting platform
- name: agones
namespace: agones
chart: agones/agones
# Use latest stable version (no version pinning for Agones)
values:
- values/agones.values.yaml
# Wait for Agones controller to be ready
wait: true
timeout: 600
# Valkey
- name: valkey
namespace: databases
chart: bitnami/valkey
values:
- values/valkey.values.yaml
# Wait for Valkey to be ready before proceeding
wait: true
timeout: 300
# NATS messaging system
- name: nats
namespace: infra
chart: nats/nats
values:
- values/nats.values.yaml
# Wait for NATS to be ready before proceeding
wait: true
timeout: 300