Skip to content
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
4 changes: 2 additions & 2 deletions charts/topograph/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: topograph
description: Discovers the physical network topology of a cluster and exposes it to schedulers.
kubeVersion: ">=1.27.0-0"
type: application
version: "1.0.0-rc.1"
appVersion: "v1.0.0-rc.1"
version: "1.0.0-rc.2"
appVersion: "v1.0.0-rc.2"
Comment on lines +6 to +7

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🩺 Stability & Availability | 🟡 Minor | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/usr/bin/env bash
set -euo pipefail

tag="v1.0.0-rc.2"

rg -n -C 4 'appVersion|image.tag|ghcr.io/nvidia/topograph' \
  charts/topograph/Chart.yaml \
  charts/topograph/tests/deployment_test.yaml || true

rg -n -C 6 'build-push|docker.*push|ghcr.io/nvidia/topograph|v1.0.0-rc.2' \
  .github/workflows || true

token="$(curl -fsSL \
  'https://ghcr.io/token?service=ghcr.io&scope=repository:nvidia/topograph:pull' |
  jq -r '.token')"

test -n "$token" && test "$token" != "null"

curl -fsSI \
  -H "Authorization: Bearer ${token}" \
  -H 'Accept: application/vnd.oci.image.manifest.v1+json' \
  "https://ghcr.io/v2/nvidia/topograph/manifests/${tag}" >/dev/null

Repository: NVIDIA/topograph

Length of output: 4496


🏁 Script executed:

#!/usr/bin/env bash
set -euo pipefail

printf '%s\n' '--- Docker workflow ---'
cat -n .github/workflows/docker.yml | sed -n '1,110p'

printf '%s\n' '--- Helm release workflow ---'
cat -n .github/workflows/helm-release.yaml | sed -n '1,100p'

printf '%s\n' '--- Chart image defaults and template ---'
rg -n -C 5 'repository:|tag:|appVersion|image:' charts/topograph/values.yaml charts/topograph/templates/deployment.yaml charts/topograph/Chart.yaml

printf '%s\n' '--- Image tag references ---'
rg -n -C 3 'v1\.0\.0-rc\.2|docker/metadata|type=semver|tags:' .github/workflows charts/topograph

Repository: NVIDIA/topograph

Length of output: 10649


Publish the release image before the chart.

The Docker and Helm release workflows are independent manual workflows. Publish ghcr.io/nvidia/topograph:v1.0.0-rc.2 before releasing the chart. With the default image.tag: "", a missing image causes ImagePullBackOff.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@charts/topograph/Chart.yaml` around lines 6 - 7, Publish the release
container image ghcr.io/nvidia/topograph:v1.0.0-rc.2 before running the Helm
chart release for version 1.0.0-rc.2. Coordinate the independent Docker and Helm
release workflows so the image is available before the chart is deployed with
the default image.tag configuration.


home: https://github.com/NVIDIA/topograph
icon: https://raw.githubusercontent.com/NVIDIA/topograph/main/docs/assets/topograph-logo.png
Expand Down
Loading