Skip to content

Commit

Permalink
adding version for 1.29 and versioning widget
Browse files Browse the repository at this point in the history
  • Loading branch information
mclacore committed May 22, 2024
1 parent a6d61dd commit 3a7aa69
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
8 changes: 4 additions & 4 deletions 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. Must be one of: `['1.22', '1.23', '1.24', '1.25', '1.26', '1.27']`. Default: `1.27`.
- **`k8s_version`** *(string)*: The version of Kubernetes to run. Must be one of: `['1.22', '1.23', '1.24', '1.25', '1.26', '1.27', '1.28', '1.29']`. Default: `1.29`.
- **`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 Expand Up @@ -115,7 +115,7 @@ Form input parameters for configuring a bundle for deployment.
"fargate": {
"enabled": false
},
"k8s_version": "1.27",
"k8s_version": "1.29",
"monitoring": {
"control_plane_log_retention": 7,
"prometheus": {
Expand All @@ -138,7 +138,7 @@ Form input parameters for configuring a bundle for deployment.
```json
{
"__name": "Development",
"k8s_version": "1.27",
"k8s_version": "1.29",
"monitoring": {
"control_plane_log_retention": 7,
"prometheus": {
Expand All @@ -160,7 +160,7 @@ Form input parameters for configuring a bundle for deployment.
```json
{
"__name": "Production",
"k8s_version": "1.27",
"k8s_version": "1.29",
"monitoring": {
"control_plane_log_retention": 365,
"prometheus": {
Expand Down
16 changes: 10 additions & 6 deletions massdriver.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ steps:
params:
examples:
- __name: Wizard
k8s_version: "1.27"
k8s_version: "1.29"
fargate:
enabled: false
node_groups:
Expand All @@ -35,7 +35,7 @@ params:
persistence_enabled: false
grafana_enabled: false
- __name: Development
k8s_version: "1.27"
k8s_version: "1.29"
node_groups:
- name_suffix: shared
instance_type: t3.medium
Expand All @@ -47,7 +47,7 @@ params:
persistence_enabled: false
grafana_enabled: false
- __name: Production
k8s_version: "1.27"
k8s_version: "1.29"
node_groups:
- name_suffix: shared
instance_type: c5.2xlarge
Expand All @@ -68,15 +68,17 @@ params:
k8s_version:
type: string
title: Kubernetes Version
description: The version of Kubernetes to run
default: "1.27"
description: The version of Kubernetes to run.
default: "1.29"
enum:
- "1.22"
- "1.23"
- "1.24"
- "1.25"
- "1.26"
- "1.27"
- "1.28"
- "1.29"
fargate:
type: object
title: Fargate
Expand Down Expand Up @@ -265,7 +267,7 @@ params:
storage_class_to_efs_map:
type: array
title: Storage Classes
description: You may optionally specify a storage class name for each EFS file system you would like to use for persistent volumes. In addition, by specifying any EFS volumes here you will limit the provisioner to only be able to create peristent volumes use the listed EFS file systems. By leaving this blank, all file systems are usable.
description: You may optionally specify a storage class name for each EFS file system you would like to use for persistent volumes. In addition, by specifying any EFS volumes here you will limit the provisioner to only be able to create persistent volumes use the listed EFS file systems. By leaving this blank, all file systems are usable.
default: []
items:
type: object
Expand Down Expand Up @@ -374,6 +376,8 @@ ui:
- core_services
- monitoring
- "*"
k8s_version:
ui:field: versioningDropdown
node_groups:
items:
ui:order:
Expand Down

0 comments on commit 3a7aa69

Please sign in to comment.