Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| dec9ab2ba8 | |||
| d71d27ae5e | |||
| f7868f787e | |||
| 3e70399d1d | |||
| 8b1987f711 | |||
| ac026d61db | |||
| c2bcee6dc8 | |||
| 0c521be1a1 |
+3
-203
@@ -2,210 +2,10 @@ name: CI
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: ['**']
|
branches: [main]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [main, dev, uat]
|
branches: [main]
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
ci:
|
ci:
|
||||||
runs-on: ubuntu-latest
|
uses: privilegedescalation/.github/.github/workflows/plugin-ci.yaml@main
|
||||||
timeout-minutes: 10
|
|
||||||
container: node:22-slim
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
- name: Install Python
|
|
||||||
run: apt-get update && apt-get install -y --no-install-recommends python3 python3-yaml
|
|
||||||
|
|
||||||
- name: Validate artifacthub-pkg.yml
|
|
||||||
run: |
|
|
||||||
python3 - <<'EOF'
|
|
||||||
import sys, re
|
|
||||||
try:
|
|
||||||
import yaml
|
|
||||||
except ImportError:
|
|
||||||
print("::warning::PyYAML not available, skipping artifacthub-pkg.yml validation")
|
|
||||||
sys.exit(0)
|
|
||||||
|
|
||||||
try:
|
|
||||||
with open("artifacthub-pkg.yml") as f:
|
|
||||||
pkg = yaml.safe_load(f)
|
|
||||||
except FileNotFoundError:
|
|
||||||
print("::error::artifacthub-pkg.yml not found")
|
|
||||||
sys.exit(1)
|
|
||||||
except yaml.YAMLError as e:
|
|
||||||
print(f"::error::artifacthub-pkg.yml is invalid YAML: {e}")
|
|
||||||
sys.exit(1)
|
|
||||||
|
|
||||||
errors = []
|
|
||||||
|
|
||||||
for field in ["version", "name", "description", "homeURL"]:
|
|
||||||
if not pkg.get(field):
|
|
||||||
errors.append(f"Missing required field: {field}")
|
|
||||||
|
|
||||||
version = pkg.get("version", "")
|
|
||||||
if version and not re.match(r'^\d+\.\d+\.\d+$', str(version)):
|
|
||||||
errors.append(f"version '{version}' is not SemVer (expected X.Y.Z)")
|
|
||||||
|
|
||||||
annotations = pkg.get("annotations", {}) or {}
|
|
||||||
archive_url = annotations.get("headlamp/plugin/archive-url", "")
|
|
||||||
archive_checksum = annotations.get("headlamp/plugin/archive-checksum", "")
|
|
||||||
|
|
||||||
if not archive_url:
|
|
||||||
errors.append("Missing annotation: headlamp/plugin/archive-url")
|
|
||||||
if not archive_checksum:
|
|
||||||
errors.append("Missing annotation: headlamp/plugin/archive-checksum")
|
|
||||||
elif not re.match(r'^sha256:[0-9a-f]{64}$', str(archive_checksum)):
|
|
||||||
errors.append(f"archive-checksum has unexpected format: '{archive_checksum}' (expected sha256:<64 hex chars>)")
|
|
||||||
|
|
||||||
if errors:
|
|
||||||
for e in errors:
|
|
||||||
print(f"::error::{e}")
|
|
||||||
sys.exit(1)
|
|
||||||
|
|
||||||
print(f"artifacthub-pkg.yml valid: name={pkg['name']} version={pkg['version']}")
|
|
||||||
EOF
|
|
||||||
|
|
||||||
- name: Detect package manager
|
|
||||||
id: pkg-manager
|
|
||||||
run: |
|
|
||||||
if [ -f "pnpm-lock.yaml" ]; then
|
|
||||||
echo "manager=pnpm" >> $GITHUB_OUTPUT
|
|
||||||
PM=$(python3 -c "import json,sys; d=json.load(open('package.json')); print('true' if d.get('packageManager','').startswith('pnpm@') else 'false')" 2>/dev/null || echo "false")
|
|
||||||
echo "has_package_manager=$PM" >> $GITHUB_OUTPUT
|
|
||||||
else
|
|
||||||
echo "manager=npm" >> $GITHUB_OUTPUT
|
|
||||||
echo "has_package_manager=false" >> $GITHUB_OUTPUT
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Setup Node
|
|
||||||
uses: actions/setup-node@v6
|
|
||||||
with:
|
|
||||||
node-version: '22'
|
|
||||||
cache: ${{ steps.pkg-manager.outputs.manager == 'npm' && 'npm' || '' }}
|
|
||||||
|
|
||||||
- name: Setup pnpm (via Corepack, reads version from packageManager field)
|
|
||||||
if: steps.pkg-manager.outputs.manager == 'pnpm' && steps.pkg-manager.outputs.has_package_manager == 'true'
|
|
||||||
run: |
|
|
||||||
npm install -g corepack
|
|
||||||
corepack enable pnpm
|
|
||||||
corepack install
|
|
||||||
|
|
||||||
- name: Setup pnpm (version latest)
|
|
||||||
if: steps.pkg-manager.outputs.manager == 'pnpm' && steps.pkg-manager.outputs.has_package_manager == 'false'
|
|
||||||
uses: pnpm/action-setup@v5
|
|
||||||
with:
|
|
||||||
run_install: false
|
|
||||||
version: latest
|
|
||||||
|
|
||||||
- name: Get pnpm store directory
|
|
||||||
id: pnpm-store
|
|
||||||
if: steps.pkg-manager.outputs.manager == 'pnpm'
|
|
||||||
run: echo "dir=$(pnpm store path --silent)" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Cache pnpm store
|
|
||||||
if: steps.pkg-manager.outputs.manager == 'pnpm'
|
|
||||||
uses: actions/cache@v5
|
|
||||||
with:
|
|
||||||
path: ${{ steps.pnpm-store.outputs.dir }}
|
|
||||||
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-pnpm-
|
|
||||||
|
|
||||||
- name: Validate pnpm lockfile freshness
|
|
||||||
if: steps.pkg-manager.outputs.manager == 'pnpm'
|
|
||||||
run: |
|
|
||||||
if [ ! -f "pnpm-lock.yaml" ]; then
|
|
||||||
echo "No pnpm-lock.yaml found, skipping lockfile freshness check"
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
if ! grep -q 'overrides:' pnpm-lock.yaml 2>/dev/null; then
|
|
||||||
echo "No overrides section in pnpm-lock.yaml, skipping lockfile freshness check"
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
echo "Detected pnpm-lock.yaml with overrides section. Checking lockfile freshness..."
|
|
||||||
ERR_FILE=$(mktemp)
|
|
||||||
if pnpm install --frozen-lockfile 2>&1 | tee "$ERR_FILE"; then
|
|
||||||
echo "Lockfile is fresh."
|
|
||||||
else
|
|
||||||
if grep -q "CONFIG_MISMATCH\|EBADLOCKFILE\|ERR_PNPM_LOCKFILE" "$ERR_FILE"; then
|
|
||||||
echo ""
|
|
||||||
echo "::error::pnpm-lock.yaml is out of sync with package.json overrides."
|
|
||||||
echo "::error::Run 'pnpm install' to regenerate the lockfile and commit the updated pnpm-lock.yaml."
|
|
||||||
rm -f "$ERR_FILE"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
rm -f "$ERR_FILE"
|
|
||||||
echo "::warning::Install failed with a different error. Will retry in the Install dependencies step."
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: |
|
|
||||||
max_attempts=3
|
|
||||||
attempt=1
|
|
||||||
while [ $attempt -le $max_attempts ]; do
|
|
||||||
echo "Attempt $attempt of $max_attempts"
|
|
||||||
if [ "${{ steps.pkg-manager.outputs.manager }}" = "pnpm" ]; then
|
|
||||||
pnpm install --frozen-lockfile && break
|
|
||||||
else
|
|
||||||
npm ci && break
|
|
||||||
fi
|
|
||||||
if [ $attempt -lt $max_attempts ]; then
|
|
||||||
echo "::warning::Install step failed on attempt $attempt. Retrying in 5 seconds..."
|
|
||||||
sleep 5
|
|
||||||
fi
|
|
||||||
attempt=$((attempt + 1))
|
|
||||||
done
|
|
||||||
if [ $attempt -gt $max_attempts ]; then
|
|
||||||
echo "::error::Install step failed after $max_attempts attempts."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Build plugin
|
|
||||||
run: npx @kinvolk/headlamp-plugin build
|
|
||||||
|
|
||||||
- name: Lint
|
|
||||||
run: |
|
|
||||||
if [ "${{ steps.pkg-manager.outputs.manager }}" = "pnpm" ]; then
|
|
||||||
pnpm run lint
|
|
||||||
else
|
|
||||||
npm run lint
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Type-check
|
|
||||||
run: |
|
|
||||||
if [ "${{ steps.pkg-manager.outputs.manager }}" = "pnpm" ]; then
|
|
||||||
pnpm run tsc
|
|
||||||
else
|
|
||||||
npm run tsc
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Format check
|
|
||||||
run: |
|
|
||||||
if [ "${{ steps.pkg-manager.outputs.manager }}" = "pnpm" ]; then
|
|
||||||
pnpm run format:check
|
|
||||||
else
|
|
||||||
npm run format:check
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Run tests
|
|
||||||
run: |
|
|
||||||
if [ "${{ steps.pkg-manager.outputs.manager }}" = "pnpm" ]; then
|
|
||||||
pnpm test
|
|
||||||
else
|
|
||||||
npm test
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Security audit
|
|
||||||
run: |
|
|
||||||
if [ "${{ steps.pkg-manager.outputs.manager }}" = "pnpm" ]; then
|
|
||||||
npx audit-ci --pnpm --audit-level=high --config ./audit-ci.jsonc
|
|
||||||
else
|
|
||||||
npx audit-ci --npm --audit-level=high --config ./audit-ci.jsonc
|
|
||||||
fi
|
|
||||||
|
|||||||
@@ -1,20 +0,0 @@
|
|||||||
name: Promotion Gate
|
|
||||||
|
|
||||||
# Calls the shared promotion gate workflow.
|
|
||||||
# dev PRs: no gate (engineer self-merges).
|
|
||||||
# uat PRs: QA approval required.
|
|
||||||
# main PRs: UAT approval required (uat→main promotions).
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request_review:
|
|
||||||
types: [submitted, dismissed]
|
|
||||||
pull_request:
|
|
||||||
branches: [uat, main]
|
|
||||||
types: [opened, reopened, synchronize]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
promotion-gate:
|
|
||||||
uses: privilegedescalation/.github/.github/workflows/dual-approval-check.yaml@main
|
|
||||||
secrets: inherit
|
|
||||||
with:
|
|
||||||
pr_number: ${{ github.event.pull_request.number }}
|
|
||||||
@@ -1,53 +0,0 @@
|
|||||||
{
|
|
||||||
"config": {
|
|
||||||
// Line length — not enforced for docs with code examples
|
|
||||||
"MD013": false,
|
|
||||||
// First line heading — files use YAML frontmatter, not headings
|
|
||||||
"MD041": false,
|
|
||||||
// Emphasis as heading — common pattern for Option 1/2/3 sections
|
|
||||||
"MD036": false,
|
|
||||||
// No duplicate heading — changelog files repeat section names intentionally
|
|
||||||
"MD024": false,
|
|
||||||
// Fenced code language — not always applicable for diagram blocks
|
|
||||||
"MD040": false,
|
|
||||||
// Table column style — table alignment is visual, not semantic
|
|
||||||
"MD060": false,
|
|
||||||
// Ordered list item prefix — number resets are intentional in documents
|
|
||||||
"MD029": false,
|
|
||||||
// No inline HTML — each elements are valid in valid Markdown
|
|
||||||
"MD033": false,
|
|
||||||
// List marker space — spacing after list markers varies by editor
|
|
||||||
"MD030": false,
|
|
||||||
// Blanks around headings — not always needed in compact docs
|
|
||||||
"MD022": false,
|
|
||||||
// Blanks around lists — not always needed in compact docs
|
|
||||||
"MD032": false,
|
|
||||||
// Blanks around fences — not always needed between adjacent blocks
|
|
||||||
"MD031": false,
|
|
||||||
// Multiple blanks — editor artifacts, not semantic
|
|
||||||
"MD012": false,
|
|
||||||
// Single title — files may have multiple H1 sections
|
|
||||||
"MD025": false,
|
|
||||||
// Trailing spaces — editor artifacts
|
|
||||||
"MD009": false,
|
|
||||||
// Bare URLs — URL shortening not always needed
|
|
||||||
"MD034": false,
|
|
||||||
// Single trailing newline — editor artifacts
|
|
||||||
"MD047": false,
|
|
||||||
// Trailing punctuation — heading punctuation is intentional
|
|
||||||
"MD026": false,
|
|
||||||
// Space in emphasis — double-asterisk bold spacing varies by renderer
|
|
||||||
"MD037": false,
|
|
||||||
// No hard tabs — some generated docs use tabs for indentation
|
|
||||||
"MD010": false,
|
|
||||||
// Code block style — generated docs may use inconsistent styles
|
|
||||||
"MD046": false,
|
|
||||||
// Comment style — generated docs have no comments
|
|
||||||
"MD048": false,
|
|
||||||
// Commands show output — shell examples intentionally show only commands
|
|
||||||
"MD014": false
|
|
||||||
},
|
|
||||||
"ignores": [
|
|
||||||
"docs/api-reference/generated/**"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
docs/api-reference/generated/**
|
|
||||||
+3
-3
@@ -1,4 +1,4 @@
|
|||||||
version: "0.1.2"
|
version: "0.1.0"
|
||||||
name: headlamp-argocd
|
name: headlamp-argocd
|
||||||
displayName: ArgoCD Headlamp Plugin
|
displayName: ArgoCD Headlamp Plugin
|
||||||
createdAt: "2026-04-21T00:00:00Z"
|
createdAt: "2026-04-21T00:00:00Z"
|
||||||
@@ -26,8 +26,8 @@ maintainers:
|
|||||||
provider:
|
provider:
|
||||||
name: privilegedescalation
|
name: privilegedescalation
|
||||||
annotations:
|
annotations:
|
||||||
headlamp/plugin/archive-url: "https://github.com/privilegedescalation/headlamp-argocd-plugin/releases/download/v0.1.2/privilegedescalation-headlamp-argocd-plugin-0.1.2.tar.gz"
|
headlamp/plugin/archive-url: "https://github.com/privilegedescalation/headlamp-argocd-plugin/releases/download/v0.1.0/headlamp-argocd-0.1.0.tar.gz"
|
||||||
headlamp/plugin/archive-checksum: sha256:e71f84913eed1fd7e2d074912e3bfa668c4b1fefcbb069731a4e4277a998ca28
|
headlamp/plugin/archive-checksum: "sha256:1f4df43f79b795bdf4f70e1e3aa5bacadf689ea5584fdadf92fb677faab21c2c"
|
||||||
headlamp/plugin/version-compat: ">=0.26"
|
headlamp/plugin/version-compat: ">=0.26"
|
||||||
headlamp/plugin/distro-compat: "in-cluster"
|
headlamp/plugin/distro-compat: "in-cluster"
|
||||||
changes:
|
changes:
|
||||||
|
|||||||
@@ -1,20 +0,0 @@
|
|||||||
{
|
|
||||||
// Allowlist for inherited dev-dependency CVEs from @kinvolk/headlamp-plugin
|
|
||||||
// CTO decision (PRI-854): these high-severity vulns are dev/build-time only,
|
|
||||||
// trace to @kinvolk/headlamp-plugin transitive deps (Picomatch, Vite, lodash),
|
|
||||||
// and do NOT ship in production plugin artifacts.
|
|
||||||
"allowlist": [
|
|
||||||
{
|
|
||||||
"id": "GHSA-hhpm-516h-p3p6",
|
|
||||||
"reason": "Picomatch ReDoS: devDependency only, does not ship in production plugin bundle"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "GHSA-36xf-7xpp-53w5",
|
|
||||||
"reason": "Vite arbitrary file read: devDependency only, does not ship in production plugin bundle"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "GHSA-jf8v-p3pp-93qh",
|
|
||||||
"reason": "lodash code injection via _.template: devDependency only, does not ship in production plugin bundle"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
+2
-3
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@privilegedescalation/headlamp-argocd-plugin",
|
"name": "@privilegedescalation/headlamp-argocd-plugin",
|
||||||
"version": "0.1.2",
|
"version": "0.1.0",
|
||||||
"description": "Headlamp plugin for ArgoCD visibility — monitors ArgoCD Applications, Rollouts, and health status",
|
"description": "Headlamp plugin for ArgoCD visibility — monitors ArgoCD Applications, Rollouts, and health status",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@@ -33,8 +33,7 @@
|
|||||||
"overrides": {
|
"overrides": {
|
||||||
"tar": "^7.5.11",
|
"tar": "^7.5.11",
|
||||||
"undici": "^7.24.3",
|
"undici": "^7.24.3",
|
||||||
"flatted": "^3.4.2",
|
"flatted": "^3.4.2"
|
||||||
"elliptic": ">=6.6.1"
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|||||||
Generated
-1
@@ -8,7 +8,6 @@ overrides:
|
|||||||
tar: ^7.5.11
|
tar: ^7.5.11
|
||||||
undici: ^7.24.3
|
undici: ^7.24.3
|
||||||
flatted: ^3.4.2
|
flatted: ^3.4.2
|
||||||
elliptic: '>=6.6.1'
|
|
||||||
|
|
||||||
importers:
|
importers:
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
||||||
"extends": ["github>privilegedescalation/.github:renovate-config"]
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user