Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,8 @@ See https://aws.amazon.com/ec2/instance-types/ for available options.</p>
See https://docs.aws.amazon.com/eks/latest/userguide/storage-classes.html for more details and
available options.</p>
<p>Depending on your use case, performance may be significantly improved with higher-tier storage classes, though this should be balanced against the associated costs.</p>
<p>Both CockroachDB and YugabyteDB recommend at least <code>gp3</code> for production workloads. Use <code>gp2</code> for testing only, or consider <code>io2</code> for high-throughput scenarios.</p>
<p>Both CockroachDB and YugabyteDB recommend at least <code>gp3</code> for production workloads. Consider <code>io2</code> for high-throughput scenarios.</p>
<p>See https://www.cockroachlabs.com/docs/v24.1/recommended-production-settings#aws and https://docs.yugabyte.com/stable/deploy/checklist/#amazon-web-services-aws for database-specific recommendations.</p>
<p>Example: <code>gp3</code> for production and <code>gp2</code> for development.</p>
</td>
</tr><tr>
<td>aws_region (<code>string</code>)</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ cluster_name = "dss-dev-ew1"
kubernetes_version = 1.32
node_count = 3
aws_instance_type = "t3.medium"
aws_kubernetes_storage_class = "gp2"
aws_kubernetes_storage_class = "gp3"

# DSS configuration
image = "docker.io/interuss/dss:latest"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,11 +153,10 @@ variable "aws_kubernetes_storage_class" {

Depending on your use case, performance may be significantly improved with higher-tier storage classes, though this should be balanced against the associated costs.

Both CockroachDB and YugabyteDB recommend at least `gp3` for production workloads. Use `gp2` for testing only, or consider `io2` for high-throughput scenarios.
Both CockroachDB and YugabyteDB recommend at least `gp3` for production workloads. Consider `io2` for high-throughput scenarios.

See https://www.cockroachlabs.com/docs/v24.1/recommended-production-settings#aws and https://docs.yugabyte.com/stable/deploy/checklist/#amazon-web-services-aws for database-specific recommendations.

Example: `gp3` for production and `gp2` for development.
EOT
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@ variable "aws_kubernetes_storage_class" {

Depending on your use case, performance may be significantly improved with higher-tier storage classes, though this should be balanced against the associated costs.

Both CockroachDB and YugabyteDB recommend at least `gp3` for production workloads. Use `gp2` for testing only, or consider `io2` for high-throughput scenarios.
Both CockroachDB and YugabyteDB recommend at least `gp3` for production workloads. Consider `io2` for high-throughput scenarios.

See https://www.cockroachlabs.com/docs/v24.1/recommended-production-settings#aws and https://docs.yugabyte.com/stable/deploy/checklist/#amazon-web-services-aws for database-specific recommendations.

Example: `gp3` for production and `gp2` for development.
EOT
}
2 changes: 1 addition & 1 deletion deploy/operations/ci/aws-1/terraform.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ kubernetes_version = 1.32
cluster_name = "dss-ci-aws-ue1"
node_count = 3
aws_instance_type = "t3.medium"
aws_kubernetes_storage_class = "gp2"
aws_kubernetes_storage_class = "gp3"

# DSS configuration
image = "docker.io/interuss/dss:latest"
Expand Down
3 changes: 1 addition & 2 deletions deploy/operations/ci/aws-1/variables.gen.tf
Original file line number Diff line number Diff line change
Expand Up @@ -153,11 +153,10 @@ variable "aws_kubernetes_storage_class" {

Depending on your use case, performance may be significantly improved with higher-tier storage classes, though this should be balanced against the associated costs.

Both CockroachDB and YugabyteDB recommend at least `gp3` for production workloads. Use `gp2` for testing only, or consider `io2` for high-throughput scenarios.
Both CockroachDB and YugabyteDB recommend at least `gp3` for production workloads. Consider `io2` for high-throughput scenarios.

See https://www.cockroachlabs.com/docs/v24.1/recommended-production-settings#aws and https://docs.yugabyte.com/stable/deploy/checklist/#amazon-web-services-aws for database-specific recommendations.

Example: `gp3` for production and `gp2` for development.
EOT
}

Expand Down
2 changes: 1 addition & 1 deletion docs/infrastructure/google-manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ your chosen provider.
provider has some default storage classes that should work:
- Google Cloud: `standard`
- Azure: `default`
- AWS: `gp2`
- AWS: `gp3`

1. `VAR_INGRESS_NAME`: If using Google Kubernetes Engine, set this to the
the name of the core-service static IP address created above (e.g.,
Expand Down
2 changes: 1 addition & 1 deletion release/infrastructure/release-aws-dss-crdb.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ cluster_name = "dss-r-crdb"
kubernetes_version = 1.35
node_count = 3
aws_instance_type = "m5.xlarge"
aws_kubernetes_storage_class = "gp2"
aws_kubernetes_storage_class = "gp3"

# DSS configuration
image = "${IMAGE}"
Expand Down
2 changes: 1 addition & 1 deletion release/infrastructure/release-aws-dss-ybdb.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ cluster_name = "dss-r-ybdb"
kubernetes_version = 1.35
node_count = 3
aws_instance_type = "m5.xlarge"
aws_kubernetes_storage_class = "gp2"
aws_kubernetes_storage_class = "gp3"

# DSS configuration
image = "${IMAGE}"
Expand Down
Loading