Skip to content

Commit

Permalink
add v1.31 as an option (and default)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisghill committed Jan 23, 2025
1 parent 1c03bb9 commit 91620bd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Form input parameters for configuring a bundle for deployment.

- **`fargate`** *(object)*: AWS Fargate provides on-demand, right-sized compute capacity for running containers on EKS without managing node pools or clusters of EC2 instances.
- **`enabled`** *(boolean)*: Enables EKS Fargate. Default: `False`.
- **`k8s_version`** *(string)*: The version of Kubernetes to run. **WARNING: Upgrading Kubernetes version must be done one minor version at a time**. For example, upgrading from 1.28 to 1.30 requires upgrading to 1.29 first. Must be one of: `['1.22', '1.23', '1.24', '1.25', '1.26', '1.27', '1.28', '1.29', '1.30']`. Default: `1.30`.
- **`k8s_version`** *(string)*: The version of Kubernetes to run. **WARNING: Upgrading Kubernetes version must be done one minor version at a time**. For example, upgrading from 1.28 to 1.30 requires upgrading to 1.29 first. Must be one of: `['1.23', '1.24', '1.25', '1.26', '1.27', '1.28', '1.29', '1.30', '1.31']`. Default: `1.31`.
- **`monitoring`** *(object)*
- **`control_plane_log_retention`** *(integer)*: Duration to retain control plane logs in AWS Cloudwatch (Note: control plane logs do not contain application or container logs). Default: `7`.
- **One of**
Expand Down
10 changes: 5 additions & 5 deletions massdriver.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ type: infrastructure

steps:
- path: src
provisioner: terraform
provisioner: opentofu
- path: core-services
provisioner: terraform
provisioner: opentofu
- path: custom-resources
provisioner: terraform
provisioner: opentofu

params:
examples:
Expand Down Expand Up @@ -69,9 +69,8 @@ params:
type: string
title: Kubernetes Version
description: "The version of Kubernetes to run. **WARNING: Upgrading Kubernetes version must be done one minor version at a time**. For example, upgrading from 1.28 to 1.30 requires upgrading to 1.29 first."
default: "1.30"
default: "1.31"
enum:
- "1.22"
- "1.23"
- "1.24"
- "1.25"
Expand All @@ -80,6 +79,7 @@ params:
- "1.28"
- "1.29"
- "1.30"
- "1.31"
fargate:
type: object
title: Fargate
Expand Down

0 comments on commit 91620bd

Please sign in to comment.