Skip to content

Commit

Permalink
fix: Update latest version of EKS supported to 1.27
Browse files Browse the repository at this point in the history
  • Loading branch information
bryantbiggs committed Jul 1, 2023
1 parent dd90e35 commit 10ebb45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eksup/src/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ use seq_macro::seq;
use serde::{Deserialize, Serialize};

/// Latest support version
pub const LATEST: &str = "1.26";
pub const LATEST: &str = "1.27";

#[derive(Debug, Serialize, Deserialize)]
pub struct Versions {
pub current: String,
pub target: String,
}

seq!(N in 20..=26 {
seq!(N in 20..=27 {
/// Kubernetes version(s) supported
#[derive(Clone, Copy, Debug, Serialize, Deserialize)]
pub enum KubernetesVersion {
Expand Down

0 comments on commit 10ebb45

Please sign in to comment.