Skip to content

Auto-update NVIDIA device plugin version in README#3

Merged
88plug merged 3 commits intomainfrom
copilot/update-nvidia-device-plugin-version
Feb 8, 2026
Merged

Auto-update NVIDIA device plugin version in README#3
88plug merged 3 commits intomainfrom
copilot/update-nvidia-device-plugin-version

Conversation

Copy link

Copilot AI commented Feb 8, 2026

README hardcoded NVIDIA device plugin at v0.13.0 while K3s/CUDA versions auto-updated via workflow. Users received stale installation instructions.

Changes

  • Workflow: Fetch latest NVIDIA device plugin release from GitHub API

    - name: Get latest NVIDIA device plugin version
      id: nvidia_plugin
      run: |
        latest=$(curl -s \
          "https://api.github.com/repos/NVIDIA/k8s-device-plugin/releases/latest" \
          | jq -r '.tag_name')
        echo "latest=$latest" >> $GITHUB_OUTPUT
  • README update: Extended awk pattern to replace version in kubectl command

    /kubectl apply -f https:\/\/raw\.githubusercontent\.com\/NVIDIA\/k8s-device-plugin\// {
      sub(/v[0-9]+\.[0-9]+\.[0-9]+/, nvidia_plugin); print; next
    }
  • Immediate fix: Bumped v0.13.0 → v0.18.2

Workflow now maintains version consistency across all components.


💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.

Copilot AI and others added 2 commits February 8, 2026 17:35
Co-authored-by: 88plug <19512127+88plug@users.noreply.github.com>
Co-authored-by: 88plug <19512127+88plug@users.noreply.github.com>
Copilot AI changed the title [WIP] Fix version check for NVIDIA device plugin in README Auto-update NVIDIA device plugin version in README Feb 8, 2026
Copilot AI requested a review from 88plug February 8, 2026 17:38
@88plug 88plug marked this pull request as ready for review February 8, 2026 17:45
@88plug 88plug merged commit 623b219 into main Feb 8, 2026
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants