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

build(helm): add support for Kubernetes 1.31 #822

Merged
merged 2 commits into from
Aug 29, 2024
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:

- name: Install Python dependencies
run: |
pip install --upgrade pip setuptools py
pip install --upgrade pip 'setuptools<71' py
pip install -e .[all]

- name: Run Sphinx documentation with doctests
Expand All @@ -152,7 +152,7 @@ jobs:

- name: Install Python dependencies
run: |
pip install --upgrade pip setuptools py
pip install --upgrade pip 'setuptools<71' py
pip install twine wheel
pip install -e .[all]

Expand Down
2 changes: 1 addition & 1 deletion helm/reana/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ keywords:
- reusable-science
type: application
version: 0.9.3
kubeVersion: '>= 1.21.0-0 < 1.31.0-0'
kubeVersion: '>= 1.21.0-0 < 1.32.0-0'
dependencies:
- name: traefik
version: 10.6.2
Expand Down
4 changes: 2 additions & 2 deletions reana/reana_dev/utils.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
#
# This file is part of REANA.
# Copyright (C) 2020, 2021, 2022, 2023 CERN.
# Copyright (C) 2020, 2021, 2022, 2023, 2024 CERN.
#
# REANA is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.
Expand Down Expand Up @@ -605,7 +605,7 @@ def upgrade_requirements(component: str) -> bool:

docker_cmd = (
f"docker run --rm -it -v {get_srcdir(component)}:/code:z {PYTHON_DOCKER_IMAGE} "
f"bash -c 'cd /code && pip install --upgrade pip-tools setuptools pip && {pip_compile_cmd}'"
f"bash -c 'cd /code && pip install --upgrade pip-tools 'setuptools<71' pip && {pip_compile_cmd}'"
)
run_command(docker_cmd, component)
return True
Expand Down
Loading