Skip to content
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
2 changes: 1 addition & 1 deletion agent-chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies:
version: "0.0.1386"
repository: https://flanksource.github.io/charts
- name: canary-checker
version: "1.1.3-beta.147"
version: "1.1.3-beta.148"
repository: https://flanksource.github.io/charts
- name: mission-control-watchtower
version: "0.1.35-beta.4"
Expand Down
2 changes: 1 addition & 1 deletion chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies:
version: "0.0.1386"
repository: https://flanksource.github.io/charts
- name: canary-checker
version: "1.1.3-beta.147"
version: "1.1.3-beta.148"

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Verify Chart.lock files exist and check their canary-checker pinned versions
fd -e Chart.lock -x bash -c 'echo "=== {} ===" && grep -A 2 "name: canary-checker" {} 2>/dev/null || echo "  (no canary-checker found)"'

Repository: flanksource/mission-control-chart

Length of output: 59


🏁 Script executed:

# Check if chart/Chart.lock exists and show its content
ls -la chart/Chart.lock 2>&1

# Also verify chart/Chart.yaml line 19
echo "=== Chart.yaml line 19 ===" 
sed -n '19p' chart/Chart.yaml 2>&1

# Find all Chart.lock files in the repository
echo "=== All Chart.lock files ===" 
find . -name "Chart.lock" -type f 2>&1

Repository: flanksource/mission-control-chart

Length of output: 272


🏁 Script executed:

# Show content of chart/Chart.lock
echo "=== chart/Chart.lock ===" 
cat chart/Chart.lock

# Show content of agent-chart/Chart.lock
echo -e "\n=== agent-chart/Chart.lock ===" 
cat agent-chart/Chart.lock

Repository: flanksource/mission-control-chart

Length of output: 1367


🏁 Script executed:

# Check agent-chart/Chart.yaml to see what version it specifies
echo "=== agent-chart/Chart.yaml dependency version ===" 
rg "canary-checker" agent-chart/Chart.yaml -A 3 -B 1

Repository: flanksource/mission-control-chart

Length of output: 325


⚠️ Critical: Chart.lock files not regenerated with updated dependency versions.

Both chart/Chart.yaml and agent-chart/Chart.yaml specify canary-checker version 1.1.3-beta.148, but the corresponding lockfiles are out of sync:

  • chart/Chart.lock pins it to 1.1.3-beta.107
  • agent-chart/Chart.lock pins it to 1.1.3-beta.63

Helm uses Chart.lock to resolve exact dependency versions during installation/upgrade. Without regenerating these lockfiles, actual deployments will continue to use the older pinned versions, making the version bumps ineffective in production.

Action required: Regenerate both lockfiles by running helm dependency update in the chart/ and agent-chart/ directories.

🤖 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 `@chart/Chart.yaml` at line 19, The canary-checker dependency version has been
updated to 1.1.3-beta.148 in both Chart.yaml files, but the corresponding
Chart.lock files in the chart and agent-chart directories have not been
regenerated, causing them to still pin to older versions. Regenerate the
lockfiles by running the helm dependency update command in both the chart
directory and the agent-chart directory to ensure the Chart.lock files reflect
the updated dependency versions specified in their respective Chart.yaml files.

repository: https://flanksource.github.io/charts
- name: flanksource-ui
version: "1.4.278"
Expand Down
Loading