File tree 3 files changed +12
-1
lines changed
3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ variable "resources" {
50
50
})
51
51
default = {
52
52
limits : {
53
- cpu : " 200m " ,
53
+ cpu : " 2 " ,
54
54
memory : " 1Gi"
55
55
}
56
56
requests : {
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ module "ogmios_v1_feature" {
21
21
metrics_delay = var. metrics_delay
22
22
extension_name = var. extension_name
23
23
api_key_salt = var. api_key_salt
24
+ dcu_per_frame = var. dcu_per_frame
24
25
}
25
26
26
27
module "ogmios_v1_proxy" {
Original file line number Diff line number Diff line change @@ -119,5 +119,15 @@ variable "instances" {
119
119
ogmios_version = string
120
120
compute_arch = string
121
121
replicas = number
122
+ resources = optional (object ({
123
+ limits = object ({
124
+ cpu = string
125
+ memory = string
126
+ })
127
+ requests = object ({
128
+ cpu = string
129
+ memory = string
130
+ })
131
+ }))
122
132
}))
123
133
}
You can’t perform that action at this time.
0 commit comments