Skip to content

Commit

Permalink
Disable helm check for kubernetes 1.28.0 until supported by kubeconfo…
Browse files Browse the repository at this point in the history
…rm (#3584)

re-enables the CI build pipeline. We'll restore 1.28.0 in the future by
reverting this.
  • Loading branch information
garypen authored Aug 16, 2023
1 parent c16b64e commit f76cede
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,10 @@ 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"
Expand Down

0 comments on commit f76cede

Please sign in to comment.