Skip to content

Commit cb60cc4

Browse files
stubbiclaude
andauthored
fix(chart): allow kubeVersion pre-release suffixes from managed providers (#102)
Per semver, a range like >=1.28.0 only matches pre-release versions when the range itself contains a pre-release identifier. GKE and EKS report versions with vendor build suffixes (e.g. v1.35.5-gke.1057002), which count as pre-releases and were rejected by the constraint. Appending -0, the lowest pre-release identifier, keeps the same lower bound while accepting vendor-suffixed versions. Fixes #101 Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
1 parent 66c1ddf commit cb60cc4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

charts/paperclip-operator/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: >-
66
type: application
77
version: 0.18.0
88
appVersion: 0.18.0
9-
kubeVersion: '>=1.28.0'
9+
kubeVersion: '>=1.28.0-0'
1010
keywords:
1111
- paperclip
1212
- ai

0 commit comments

Comments
 (0)