dddbd30677
Features: - Complete SealedSecret CRD integration with Headlamp - Client-side encryption using controller's public key - Support for all three scoping modes (strict, namespace-wide, cluster-wide) - List and detail views for SealedSecrets - Encryption dialog for creating new SealedSecrets - Decryption support with RBAC awareness - Sealing keys management - Settings page for controller configuration - Integration with Secret detail view Technical: - Full TypeScript with strict mode - ~1,345 lines of code - Build size: 339.42 kB (93.21 kB gzipped) - Compatible with Headlamp v0.13.0+ - Apache 2.0 license Security: - All encryption performed client-side - RSA-OAEP + AES-256-GCM (kubeseal-compatible) - Auto-hide decrypted values after 30 seconds Closes: Initial implementation
76 lines
2.4 KiB
YAML
76 lines
2.4 KiB
YAML
# Artifact Hub package metadata file
|
|
# https://github.com/artifacthub/hub/blob/master/docs/metadata/artifacthub-pkg.yml
|
|
version: 0.1.0
|
|
name: headlamp-sealed-secrets
|
|
displayName: Sealed Secrets Plugin for Headlamp
|
|
createdAt: "2026-02-11T00:00:00Z"
|
|
description: A comprehensive Headlamp plugin for managing Bitnami Sealed Secrets with client-side encryption
|
|
logoURL: https://raw.githubusercontent.com/bitnami-labs/sealed-secrets/main/docs/sealed-secrets.png
|
|
license: Apache-2.0
|
|
homeURL: https://github.com/cpfarhood/headlamp-sealed-secrets-plugin
|
|
appVersion: 0.1.0
|
|
containersImages:
|
|
- name: sealed-secrets-controller
|
|
image: docker.io/bitnami/sealed-secrets-controller:v0.24.0
|
|
keywords:
|
|
- headlamp
|
|
- kubernetes
|
|
- sealed-secrets
|
|
- secrets
|
|
- encryption
|
|
- security
|
|
links:
|
|
- name: Source Code
|
|
url: https://github.com/cpfarhood/headlamp-sealed-secrets-plugin
|
|
- name: Sealed Secrets
|
|
url: https://github.com/bitnami-labs/sealed-secrets
|
|
- name: Headlamp
|
|
url: https://headlamp.dev
|
|
install: |
|
|
## Installation
|
|
|
|
### Prerequisites
|
|
|
|
1. Headlamp v0.13.0 or later
|
|
2. Sealed Secrets controller installed on your cluster:
|
|
```bash
|
|
kubectl apply -f https://github.com/bitnami-labs/sealed-secrets/releases/download/v0.24.0/controller.yaml
|
|
```
|
|
|
|
### Install the Plugin
|
|
|
|
#### Option 1: From NPM
|
|
```bash
|
|
npm install -g headlamp-sealed-secrets
|
|
```
|
|
|
|
#### Option 2: Build from Source
|
|
```bash
|
|
git clone https://github.com/cpfarhood/headlamp-sealed-secrets-plugin
|
|
cd headlamp-sealed-secrets-plugin/headlamp-sealed-secrets
|
|
npm install
|
|
npm run build
|
|
```
|
|
|
|
Then copy the `dist` folder to your Headlamp plugins directory:
|
|
- **Linux**: `~/.config/Headlamp/plugins/headlamp-sealed-secrets/`
|
|
- **macOS**: `~/Library/Application Support/Headlamp/plugins/headlamp-sealed-secrets/`
|
|
- **Windows**: `%APPDATA%\Headlamp\plugins\headlamp-sealed-secrets\`
|
|
|
|
## Usage
|
|
|
|
After installation, navigate to **Sealed Secrets** in the Headlamp sidebar to:
|
|
- View and manage SealedSecrets
|
|
- Create new encrypted secrets
|
|
- Manage sealing keys
|
|
- Configure controller settings
|
|
|
|
For detailed usage instructions, see the [README](https://github.com/cpfarhood/headlamp-sealed-secrets-plugin/blob/main/headlamp-sealed-secrets/README.md).
|
|
maintainers:
|
|
- name: cpfarhood
|
|
email: cpfarhood@users.noreply.github.com
|
|
recommendations:
|
|
- url: https://artifacthub.io/packages/helm/sealed-secrets/sealed-secrets
|
|
provider:
|
|
name: <YOUR_NAME or ORGANIZATION>
|