-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalues.yaml
More file actions
193 lines (181 loc) · 3.89 KB
/
values.yaml
File metadata and controls
193 lines (181 loc) · 3.89 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
# Default values for OpenOps
nameOverride: ""
fullnameOverride: ""
# Global settings
global:
storageClass: ""
# OpenOps Components using official Docker images
# OpenOps App Component
app:
enabled: true
replicaCount: 1
image:
# Using the official image from ECR public repository
repository: "public.ecr.aws/openops/openops-app"
tag: "0.2.7"
pullPolicy: IfNotPresent
service:
type: ClusterIP
port: 80
resources:
requests:
cpu: 1
memory: 2Gi
limits:
cpu: 2
memory: 4Gi
# OpenOps Engine Component
engine:
enabled: true
replicaCount: 1
image:
# Using the official image from ECR public repository
repository: "public.ecr.aws/openops/openops-engine"
tag: "0.2.7"
pullPolicy: IfNotPresent
resources:
requests:
cpu: 500m
memory: 1Gi
limits:
cpu: 1
memory: 2Gi
volumes:
azure:
enabled: true
size: 1Gi
gcloud:
enabled: true
size: 1Gi
# OpenOps Tables Component
tables:
enabled: true
replicaCount: 1
image:
# Using the official image from ECR public repository
repository: "public.ecr.aws/openops/openops-tables"
tag: "0.1.8" # Using the version from vicrem/openops-helm
pullPolicy: IfNotPresent
service:
type: ClusterIP
port: 80
persistence:
enabled: true
size: 10Gi
resources:
requests:
cpu: 500m
memory: 1Gi
limits:
cpu: 1
memory: 2Gi
# OpenOps Analytics Component
analytics:
enabled: true
replicaCount: 1
image:
# Using the official image from ECR public repository
repository: "public.ecr.aws/openops/openops-analytics"
tag: "0.12.16" # Using the version from vicrem/openops-helm
pullPolicy: IfNotPresent
service:
type: ClusterIP
port: 80
resources:
requests:
cpu: 500m
memory: 1Gi
limits:
cpu: 1
memory: 2Gi
# Postgres Database - using official Docker Hub image
postgres:
enabled: true
image:
repository: postgres
tag: "14.4"
pullPolicy: IfNotPresent
service:
port: 5432
persistence:
enabled: true
size: 20Gi
resources:
requests:
cpu: 500m
memory: 1Gi
limits:
cpu: 1
memory: 2Gi
maxConnections: 300
# Redis Cache - using official Docker Hub image
redis:
enabled: true
image:
repository: redis
tag: "7.4.0"
pullPolicy: IfNotPresent
service:
port: 6379
persistence:
enabled: true
size: 5Gi
resources:
requests:
cpu: 200m
memory: 512Mi
limits:
cpu: 500m
memory: 1Gi
# NGINX Gateway - using official Docker Hub image
nginx:
enabled: true
image:
repository: nginx
tag: "1.27.4"
pullPolicy: IfNotPresent
service:
type: ClusterIP
port: 80
configMap:
enabled: true
resources:
requests:
cpu: 100m
memory: 128Mi
limits:
cpu: 200m
memory: 256Mi
# Ingress configuration
ingress:
enabled: false
className: ""
annotations: {}
hosts:
- host: openops.local
paths:
- path: /
pathType: ImplementationSpecific
tls: []
# Environment variables and secrets
env:
OPS_OPENOPS_ADMIN_EMAIL: admin@example.com
OPS_OPENOPS_TABLES_PUBLIC_URL: http://openops-tables
OPS_POSTGRES_HOST: openops-postgres
OPS_POSTGRES_PORT: "5432"
OPS_POSTGRES_DATABASE: openops
OPS_OPENOPS_TABLES_DATABASE_NAME: openops_tables
OPS_TABLES_TOKEN_LIFETIME_MINUTES: "60"
OPS_JWT_TOKEN_LIFETIME_HOURS: "24"
ANALYTICS_ALLOW_ADHOC_SUBQUERY: "true"
# Sensitive credentials that will be stored in a Kubernetes Secret
secrets:
enabled: true
# These values will be base64 encoded automatically by the template
OPS_OPENOPS_ADMIN_PASSWORD: "changeMe"
OPS_POSTGRES_USERNAME: "postgres"
OPS_POSTGRES_PASSWORD: "postgres"
OPS_ENCRYPTION_KEY: "changeMe"
OPS_JWT_SECRET: "changeMe"
ANALYTICS_POWERUSER_PASSWORD: "changeMe"
OPS_ANALYTICS_ADMIN_PASSWORD: "changeMe"