Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sync Terraform & Helm #14899

Merged
merged 1 commit into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion terraform/aptos-node/gcp/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ variable "utility_instance_enable_taint" {
variable "validator_instance_enable_taint" {
description = "Whether to taint instances in the validator nodegroup"
type = bool
default = false
default = true
}

variable "gke_enable_node_autoprovisioning" {
Expand Down
16 changes: 8 additions & 8 deletions terraform/helm/aptos-node/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ validator:
pullPolicy: IfNotPresent
resources:
limits:
cpu: 14
memory: 56Gi
cpu: 30
memory: 60Gi
requests:
cpu: 14
memory: 56Gi
cpu: 30
memory: 60Gi
storage:
# -- Kubernetes storage class to use for validator persistent storage
class:
Expand Down Expand Up @@ -103,11 +103,11 @@ fullnode:
replicas: 1
resources:
limits:
cpu: 14
memory: 56Gi
cpu: 30
memory: 60Gi
requests:
cpu: 14
memory: 56Gi
cpu: 30
memory: 60Gi
storage:
# -- Kubernetes storage class to use for fullnode persistent storage
class:
Expand Down
8 changes: 4 additions & 4 deletions terraform/helm/fullnode/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ image:

resources:
limits:
cpu: 14
memory: 56Gi
cpu: 30
memory: 60Gi
requests:
cpu: 14
memory: 56Gi
cpu: 30
memory: 60Gi

nodeSelector: {}
tolerations: []
Expand Down
Loading