API Key custom secret
This page details how to inject the apikey using a custom secret
Either manually or using a secret manager, create a secret in the following structure
apiVersion: v1
kind: Secret
metadata:
name: <secretName>
namespace: <groundcover namespace>
stringData:
<secretKey>: <apikey>
type: Opaque
Create/Update helm overrides file, with the following override
global:
groundcoverPredefinedTokenSecret:
secretName: <secretName>
secretKey: <secretKey>
Last modified 1mo ago