diff --git a/.changesets/maint_garypen_3587_enable_1_28_0.md b/.changesets/maint_garypen_3587_enable_1_28_0.md new file mode 100644 index 0000000000..70275603bb --- /dev/null +++ b/.changesets/maint_garypen_3587_enable_1_28_0.md @@ -0,0 +1,7 @@ +### Enable checking for kubernetes 1.28.0 in kubeconform ([Issue #3587](https://github.com/apollographql/router/issues/3587)) + +Support has now been added for kubernetes `1.28.0` and we can re-enable checking. + +This is reverting the change from #3584. + +By [@garypen](https://github.com/garypen) in https://github.com/apollographql/router/pull/3638 \ No newline at end of file diff --git a/.circleci/config.yml b/.circleci/config.yml index 31c8e937d4..fbe6c7694b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -373,10 +373,6 @@ commands: # Use helm to template our chart against all kube versions TEMPLATE_DIR=$(mktemp -d) for kube_version in ${CURRENT_KUBE_VERSIONS}; do - # Skip 1.28.0 until supported by kubeconform - if [[ "${kube_version}" == "1.28.0" ]]; then - continue - fi # Use helm to template our chart against kube_version helm template --kube-version "${kube_version}" router helm/chart/router --set autoscaling.enabled=true > "${TEMPLATE_DIR}/router-${kube_version}.yaml"