Conversation
b3896df to
f6beafb
Compare
f6beafb to
10add25
Compare
10add25 to
8d20304
Compare
8d20304 to
4f5ba3d
Compare
4f5ba3d to
46c400e
Compare
46c400e to
97c340a
Compare
97c340a to
883cc09
Compare
81d5ed4 to
17c9f0a
Compare
17c9f0a to
32d74d8
Compare
32d74d8 to
108a2b8
Compare
dc046e7 to
8fea3a0
Compare
8fea3a0 to
95f840b
Compare
e861e1a to
3601f8b
Compare
3601f8b to
2030234
Compare
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In `@chart/Chart.yaml`:
- Line 13: The chart's declared version in Chart.yaml (version: "1.4.162") is
not present in the Helm repo index for repository flanksource-ui, causing Helm
to fail resolution; either publish and add 1.4.162 to the repo index before
merging, or update the Chart.yaml version field to the indexed release version
"1.0.772", or point the dependency/repository configuration to the correct Helm
repo that contains 1.4.162 — modify the Chart.yaml version or the repo
URL/dependencies accordingly and ensure the repository's index.yaml lists the
chosen version so Helm can resolve it.
📜 Review details
Configuration used: Organization UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
chart/Chart.yaml
🧰 Additional context used
🪛 GitHub Actions: Lint
chart/Chart.yaml
[error] 1-1: Can't get a valid version for repositories flanksource-ui. Try changing the version constraint in Chart.yaml.
✏️ Tip: You can disable this entire section by setting review_details to false in your review settings.
chart/Chart.yaml
Outdated
| dependencies: | ||
| - name: flanksource-ui | ||
| version: "1.0.772" | ||
| version: "1.4.162" |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Verify available flanksource-ui versions in the Helm repository
echo "=== Checking if flanksource-ui-1.4.162.tgz exists ==="
curl -s -o /dev/null -w "HTTP Status: %{http_code}\n" https://flanksource.github.io/charts/flanksource-ui-1.4.162.tgz
echo ""
echo "=== Checking flanksource-ui-1.0.772.tgz (previous version) ==="
curl -s -o /dev/null -w "HTTP Status: %{http_code}\n" https://flanksource.github.io/charts/flanksource-ui-1.0.772.tgz
echo ""
echo "=== Searching for flanksource-ui entries in index.yaml ==="
curl -s https://flanksource.github.io/charts/index.yaml | grep -A 5 "name: flanksource-ui" | head -30Repository: flanksource/canary-checker
Length of output: 1839
Critical: Version 1.4.162 is not indexed in the Helm repository.
While the chart file exists at the direct URL, it is not listed in the repository's index.yaml, which prevents Helm from resolving it during dependency installation. The pipeline failure "Can't get a valid version for repositories flanksource-ui" confirms this—only version 1.0.772 is currently indexed and available.
Either:
- Publish and index flanksource-ui 1.4.162 in the Helm repository before merging
- Revert to the indexed version
1.0.772 - Update the repository URL if this chart is published elsewhere
🤖 Prompt for AI Agents
In `@chart/Chart.yaml` at line 13, The chart's declared version in Chart.yaml
(version: "1.4.162") is not present in the Helm repo index for repository
flanksource-ui, causing Helm to fail resolution; either publish and add 1.4.162
to the repo index before merging, or update the Chart.yaml version field to the
indexed release version "1.0.772", or point the dependency/repository
configuration to the correct Helm repo that contains 1.4.162 — modify the
Chart.yaml version or the repo URL/dependencies accordingly and ensure the
repository's index.yaml lists the chosen version so Helm can resolve it.
0e12d61 to
79fcfbe
Compare
612e3c4 to
e608836
Compare
e608836 to
ea11adc
Compare
ea11adc to
ca9e240
Compare
ca9e240 to
daf2854
Compare
daf2854 to
a62ed55
Compare
a62ed55 to
580f213
Compare
580f213 to
e0c624d
Compare
e0c624d to
1e5f5dc
Compare
1e5f5dc to
94af953
Compare
Automated changes by create-pull-request GitHub action