Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add kubernetes upper-bound for things using paasta as a library #3671

Merged
merged 1 commit into from
Aug 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion requirements-minimal.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@ ipaddress >= 1.0.22
isodate >= 0.5.0
jsonschema[format]
kazoo >= 2.0.0
kubernetes >= 18.20.0
# the upper-bound here is mainly for things that use paasta-tools as a library and don't benefit
# from our pinned-dependencies. The upper-bound should generally be the latest kubernetes version
# that we can use across our different clusters (e.g, if X.0.0 removes an API version that we use
# in any cluster, this upper-bound should be < X.0.0)
# we should probably also be better at setting a correct lower-bound, but that's less likely to cause issues.
kubernetes >= 18.20.0, < 22.0.0
ldap3
manhole
marathon >= 0.12.0
Expand Down
Loading