feat: customize name of secret (#125)

This commit is contained in:
Ugo Mignon 2023-10-24 10:18:41 +02:00 committed by GitHub
parent 6832edc9e9
commit 35abbe3c5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,6 +6,7 @@ package controllers
import (
"context"
"fmt"
"os"
"sync"
"github.com/go-logr/logr"
@ -22,13 +23,18 @@ import (
)
const (
ClientIDKey = "client_id"
ClientSecretKey = "client_secret"
FinalizerName = "finalizer.ory.hydra.sh"
DefaultClientID = "CLIENT_ID"
DefaultSecretKey = "CLIENT_SECRET"
FinalizerName = "finalizer.ory.hydra.sh"
DefaultNamespace = "default"
)
var (
ClientIDKey = DefaultClientID
ClientSecretKey = DefaultSecretKey
)
type clientKey struct {
url string
port int
@ -66,6 +72,15 @@ type Options struct {
// Option is a functional option.
type Option func(*Options)
func init() {
if os.Getenv("CLIENT_ID_KEY") != "" {
ClientIDKey = os.Getenv("CLIENT_ID_KEY")
}
if os.Getenv("CLIENT_SECRET_KEY") != "" {
ClientSecretKey = os.Getenv("CLIENT_SECRET_KEY")
}
}
// WithNamespace sets the kubernetes namespace for the controller.
// The default is "default".
func WithNamespace(ns string) Option {