Import cluster-secret controller

This commit is contained in:
Thomas Renger 2025-06-06 14:00:23 +02:00
parent cb8ecc3245
commit 5df3c4d17f
Signed by: dentaku
SSH key fingerprint: SHA256:3pXRlkAIOSmRhvOdUy1u9pcn9oQyK/iqRVhYynG+atQ
9 changed files with 84 additions and 0 deletions

23
cluster-secret/.helmignore Executable file
View file

@ -0,0 +1,23 @@
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*.orig
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/

View file

@ -0,0 +1,6 @@
dependencies:
- name: cluster-secret
repository: https://charts.clustersecret.com/
version: 0.5.2
digest: sha256:374ccdb801bf2d3e199ad00a37c6e05de5fc0f5d17d7afe1aeb0e9c6e565f190
generated: "2025-05-21T11:43:13.032402+02:00"

13
cluster-secret/Chart.yaml Executable file
View file

@ -0,0 +1,13 @@
apiVersion: v2
appVersion: 0.0.14
description: ClusterSecret Operator
dependencies:
- name: cluster-secret
repository: https://charts.clustersecret.com/
version: 0.5.x
icon: https://clustersecret.com/assets/csninjasmall.png
name: cluster-secret
sources:
- https://github.com/zakkg3/ClusterSecret
type: application
version: 0.5.2

Binary file not shown.

View file

@ -0,0 +1,42 @@
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: clustersecrets.clustersecret.io
spec:
group: clustersecret.io
names:
kind: ClusterSecret
plural: clustersecrets
shortNames:
- csec
singular: clustersecret
scope: Cluster
versions:
- additionalPrinterColumns:
- description: Secret Type
jsonPath: .type
name: Type
type: string
name: v1
schema:
openAPIV3Schema:
properties:
avoidNamespaces:
items:
type: string
type: array
data:
type: object
x-kubernetes-preserve-unknown-fields: true
matchNamespace:
items:
type: string
type: array
status:
type: object
x-kubernetes-preserve-unknown-fields: true
type:
type: string
type: object
served: true
storage: true

View file

0
cluster-secret/test.yaml Normal file
View file

View file

View file