Initial release: Headlamp Sealed Secrets plugin v0.1.0
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
This commit is contained in:
@@ -0,0 +1,65 @@
|
||||
{
|
||||
"name": "headlamp-sealed-secrets",
|
||||
"version": "0.1.0",
|
||||
"description": "Headlamp plugin for Bitnami Sealed Secrets - manage encrypted Kubernetes secrets",
|
||||
"main": "dist/main.js",
|
||||
"files": [
|
||||
"dist",
|
||||
"README.md",
|
||||
"LICENSE"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/cpfarhood/headlamp-sealed-secrets-plugin.git",
|
||||
"directory": "headlamp-sealed-secrets"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/cpfarhood/headlamp-sealed-secrets-plugin/issues"
|
||||
},
|
||||
"homepage": "https://github.com/cpfarhood/headlamp-sealed-secrets-plugin#readme",
|
||||
"author": "cpfarhood",
|
||||
"license": "Apache-2.0",
|
||||
"scripts": {
|
||||
"start": "headlamp-plugin start",
|
||||
"build": "headlamp-plugin build",
|
||||
"format": "headlamp-plugin format",
|
||||
"lint": "headlamp-plugin lint",
|
||||
"lint-fix": "headlamp-plugin lint --fix",
|
||||
"package": "headlamp-plugin package",
|
||||
"tsc": "headlamp-plugin tsc",
|
||||
"storybook": "headlamp-plugin storybook",
|
||||
"storybook-build": "headlamp-plugin storybook-build",
|
||||
"test": "headlamp-plugin test",
|
||||
"i18n": "headlamp-plugin i18n"
|
||||
},
|
||||
"keywords": [
|
||||
"headlamp",
|
||||
"headlamp-plugin",
|
||||
"kubernetes",
|
||||
"kubernetes-ui",
|
||||
"sealed-secrets",
|
||||
"bitnami",
|
||||
"encryption",
|
||||
"secrets",
|
||||
"security",
|
||||
"k8s"
|
||||
],
|
||||
"prettier": "@headlamp-k8s/eslint-config/prettier-config",
|
||||
"eslintConfig": {
|
||||
"extends": [
|
||||
"@headlamp-k8s",
|
||||
"prettier",
|
||||
"plugin:jsx-a11y/recommended"
|
||||
]
|
||||
},
|
||||
"overrides": {
|
||||
"typescript": "5.6.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"node-forge": "^1.3.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@kinvolk/headlamp-plugin": "^0.13.1",
|
||||
"@types/node-forge": "^1.3.11"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user