Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8529a8043a |
@@ -2,9 +2,9 @@ name: CI
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [main, dev]
|
branches: [main]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [main, dev]
|
branches: [main]
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
|
|
||||||
|
|||||||
@@ -16,5 +16,3 @@ jobs:
|
|||||||
dual-approval:
|
dual-approval:
|
||||||
uses: privilegedescalation/.github/.github/workflows/dual-approval-check.yaml@main
|
uses: privilegedescalation/.github/.github/workflows/dual-approval-check.yaml@main
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
with:
|
|
||||||
pr_number: ${{ github.event.pull_request.number }}
|
|
||||||
|
|||||||
@@ -1,14 +0,0 @@
|
|||||||
name: Renovate
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
jobs:
|
|
||||||
renovate:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- uses: renovatebot/github-action@v40.3.0
|
|
||||||
with:
|
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
configurationFile: renovate.json
|
|
||||||
@@ -6,9 +6,3 @@ dist/
|
|||||||
.env.local
|
.env.local
|
||||||
.eslintcache
|
.eslintcache
|
||||||
.playwright-mcp/
|
.playwright-mcp/
|
||||||
|
|
||||||
# E2E
|
|
||||||
e2e/.auth/
|
|
||||||
.env.e2e
|
|
||||||
playwright-report/
|
|
||||||
test-results/
|
|
||||||
|
|||||||
@@ -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/**
|
|
||||||
@@ -7,10 +7,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
### Changed
|
|
||||||
|
|
||||||
- **ArtifactHub namespace** — updated `provider.name` and `maintainers[].name` in `artifacthub-pkg.yml` from `privilegedescalation` to `headlamp` to reflect the ArtifactHub package namespace
|
|
||||||
|
|
||||||
## [1.0.0] - 2026-03-24
|
## [1.0.0] - 2026-03-24
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
@@ -90,7 +90,7 @@ roleRef:
|
|||||||
subjects:
|
subjects:
|
||||||
- kind: ServiceAccount
|
- kind: ServiceAccount
|
||||||
name: headlamp
|
name: headlamp
|
||||||
namespace: <your-namespace>
|
namespace: headlamp
|
||||||
```
|
```
|
||||||
|
|
||||||
## Troubleshooting
|
## Troubleshooting
|
||||||
|
|||||||
+5
-5
@@ -1,4 +1,4 @@
|
|||||||
version: "1.0.2"
|
version: "1.0.1"
|
||||||
name: headlamp-rook-plugin
|
name: headlamp-rook-plugin
|
||||||
displayName: Rook Plugin
|
displayName: Rook Plugin
|
||||||
createdAt: "2026-02-18T00:00:00Z"
|
createdAt: "2026-02-18T00:00:00Z"
|
||||||
@@ -18,10 +18,10 @@ links:
|
|||||||
- name: source
|
- name: source
|
||||||
url: https://github.com/privilegedescalation/headlamp-rook-plugin
|
url: https://github.com/privilegedescalation/headlamp-rook-plugin
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: headlamp
|
- name: privilegedescalation
|
||||||
email: privilegedescalation@users.noreply.github.com
|
email: privilegedescalation@users.noreply.github.com
|
||||||
provider:
|
provider:
|
||||||
name: headlamp
|
name: privilegedescalation
|
||||||
changes:
|
changes:
|
||||||
- kind: changed
|
- kind: changed
|
||||||
description: "Bump to v1.0.1 patch release — fix ArtifactHub checksum"
|
description: "Bump to v1.0.1 patch release — fix ArtifactHub checksum"
|
||||||
@@ -35,7 +35,7 @@ changes:
|
|||||||
description: "Renovate: extend org-level config preset and add pinDigests for SHA pinning of GitHub Actions"
|
description: "Renovate: extend org-level config preset and add pinDigests for SHA pinning of GitHub Actions"
|
||||||
|
|
||||||
annotations:
|
annotations:
|
||||||
headlamp/plugin/archive-url: "https://github.com/privilegedescalation/headlamp-rook-plugin/releases/download/v1.0.2/rook-1.0.2.tar.gz"
|
headlamp/plugin/archive-url: "https://github.com/privilegedescalation/headlamp-rook-plugin/releases/download/v1.0.1/rook-1.0.1.tar.gz"
|
||||||
headlamp/plugin/archive-checksum: sha256:4f16cec3297968c7eb06e475a1c175503abf17134bd411fc86be1f18d9d27a48
|
headlamp/plugin/archive-checksum: sha256:fb8d61060fd1c7340dc8c23931dd471e1451aeea8369a033bfa8bf54cd032ebb
|
||||||
headlamp/plugin/distro-compat: ""
|
headlamp/plugin/distro-compat: ""
|
||||||
headlamp/plugin/version-compat: ">=0.20"
|
headlamp/plugin/version-compat: ">=0.20"
|
||||||
|
|||||||
+2
-13
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "rook",
|
"name": "rook",
|
||||||
"version": "1.0.2",
|
"version": "1.0.1",
|
||||||
"description": "Headlamp plugin for Rook-Ceph cluster visibility and CSI driver monitoring",
|
"description": "Headlamp plugin for Rook-Ceph cluster visibility and CSI driver monitoring",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@@ -45,17 +45,6 @@
|
|||||||
},
|
},
|
||||||
"overrides": {
|
"overrides": {
|
||||||
"tar": "^7.5.11",
|
"tar": "^7.5.11",
|
||||||
"undici": "^7.24.3",
|
"undici": "^7.24.3"
|
||||||
"vite": ">=6.4.2",
|
|
||||||
"lodash": ">=4.18.0",
|
|
||||||
"elliptic": ">=6.6.1"
|
|
||||||
},
|
|
||||||
"packageManager": "pnpm@9.15.4",
|
|
||||||
"pnpm": {
|
|
||||||
"onlyBuiltDependencies": [
|
|
||||||
"@swc/core",
|
|
||||||
"esbuild",
|
|
||||||
"msw"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Generated
+790
-1279
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user