3b4005a047
This is done in preparation to allow multiple logging stacks.
Change-Id: I950200805ec01851bfdf6ccc3a5243893a947616
10 lines
242 B
YAML
10 lines
242 B
YAML
#@ load("@ytt:data", "data")
|
|
#@ load("@ytt:base64", "base64")
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: loki-basic-auth
|
|
namespace: #@ data.values.namespace
|
|
data:
|
|
auth: #@ base64.encode(data.values.logging.loki.htpasswd)
|
|
type: Opaque
|