Skip to content

Commit

Permalink
chore: upgrade to Aspect Workflows 5.8.0-rc4 (#513)
Browse files Browse the repository at this point in the history
  • Loading branch information
gregmagolan authored Sep 14, 2023
1 parent a6be619 commit f5c9e6e
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
22 changes: 21 additions & 1 deletion .aspect/workflows/terraform/workflows.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ module "aspect_workflows" {
}

# Aspect Workflows terraform module
source = "https://s3.us-east-2.amazonaws.com/static.aspect.build/aspect/5.7.5/workflows/terraform-aws-aspect-workflows.zip"
source = "https://s3.us-east-2.amazonaws.com/static.aspect.build/aspect/5.8.0-rc4/workflows/terraform-aws-aspect-workflows.zip"

# Non-terraform Aspect Workflows release artifacts are pulled from the region specific
# aspect-artifacts bucket during apply. Aspect will grant your AWS account access to this bucket
Expand All @@ -41,6 +41,9 @@ module "aspect_workflows" {
# Name of the deployment
customer_id = "aspect-build/aspect-cli"

# PagerDuty key for this deployment
pagerduty_integration_key = "51f08be2e7764903d07252bdc0e65acf"

# VPC properties
vpc_id = module.vpc.vpc_id
vpc_subnets = module.vpc.private_subnets
Expand All @@ -54,6 +57,23 @@ module "aspect_workflows" {
k8s_remote = true
}

# Kubernetes remote cache properties
experimental_remote = {
cache_size_gb = 50
cache_shards = 1
replicate_cache = false
load_balancer_replicas = 2
}

# Kubernetes cluster properties
k8s_cluster = {
cluster_version = "1.27"
min_size = 1
max_size = 10
desired_size = 3
instance_types = ["t3.medium"],
}

# Monitoring properties
monitoring_enabled = true

Expand Down
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ setup: true
orbs:
continuation: circleci/[email protected]
slack: circleci/[email protected]
bazel: aspect-build/workflows@5.7.5
bazel: aspect-build/workflows@dev:5.8.0-rc4

workflows:
bazel-setup:
Expand Down

0 comments on commit f5c9e6e

Please sign in to comment.