bitnami/sealed-secrets

kubeseal: client library

Open

#348 opened on Jan 24, 2020

 (1 comment) (12 reactions) (0 assignees)Go (771 forks)auto 404
enhancementhelp wanted

Repository metrics

Stars
 (9,222 stars)
PR merge metrics
 (PR metrics pending)

Description

Is there any interest in providing a kubeseal client library? I'm specifically after the Seal function. The use-case is for custom applications generated SealedSecrets.

Currently func seal is non-exported and lives directly in cmd/kubeseal.

e.g. pseudo code

package client

type Sealer interface {
    Seal(key, Secret) (SealedSecret, error)
}

Contributor guide