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

remove references to outdated RAPIDS images #382

Open
20 tasks
jameslamb opened this issue Jun 5, 2024 · 1 comment
Open
20 tasks

remove references to outdated RAPIDS images #382

jameslamb opened this issue Jun 5, 2024 · 1 comment
Assignees
Labels
doc Improvements or additions to documentation

Comments

@jameslamb
Copy link
Member

jameslamb commented Jun 5, 2024

Description

Since rapidsai/docker#539, the main RAPIDS docker images intended for end-user deployments have been:

Any references in the deployment docs to older, no-longer-supported images should be replaced.

Benefits of this work

  • reduces friction in updating to the latest RAPIDS releases
  • reduces the risk of time wasted by RAPIDS users on things that are no longer supported

Acceptance Criteria

  • there are 0 remaining references to any of the images listed under "Deprecated docker repositories" in Repository overhaul for RAPIDS v23.08 docker#539
    • including in static pictures
  • there are 0 remaining references to outdated images tags (except where keeping an old reference is an intentional choice)

Approach

Start like this:

git grep -E 'rapidsai/'
git grep -E ':2[0-9]+\.'

Replace those references, wherever appropriate, with rapidsai/base and rapidsai/notebooks.

Try to do so with the templating driven by this:

versions = {
"stable": {
"rapids_version": stable_version,
"rapids_container": f"nvcr.io/nvidia/rapidsai/base:{stable_version}-cuda11.8-py3.10",
"rapids_notebooks_container": f"nvcr.io/nvidia/rapidsai/notebooks:{stable_version}-cuda11.8-py3.10",
"rapids_conda_channels": "-c rapidsai -c conda-forge -c nvidia",
"rapids_conda_packages": f"rapids={stable_version} python=3.10 cuda-version=11.8",
},
"nightly": {
"rapids_version": f"{nightly_version}-nightly",
"rapids_container": f"rapidsai/base:{nightly_version + 'a'}-cuda11.8-py3.10",
"rapids_notebooks_container": f"rapidsai/notebooks:{nightly_version + 'a'}-cuda11.8-py3.10",
"rapids_conda_channels": "-c rapidsai-nightly -c conda-forge -c nvidia",
"rapids_conda_packages": f"rapids={nightly_version} python=3.10 cuda-version=11.8",
},
}

Uses

List of references that need to be updated:

rapidsai/rapidsai-core image

rapidsai/rapidsai image

rapidsai/rapidsai-nightly image

(None)

23.02 release

23.04 release

(None)

23.06 release

23.08 release

23.10 release

23.12 release

24.02 release

(None)

24.04 release

24.06 release

24.08 release

(None)

@jameslamb
Copy link
Member Author

I've updated the description here with a comprehensive list of the remaining references, so we can see how much work remains.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
doc Improvements or additions to documentation
Projects
None yet
Development

No branches or pull requests

1 participant