Hey guys,
First of all thank you for the operator, we use it constantly.
Now there has come a point where we are spending more time deploying "token secrets" into the cluster than anything esle, which is especially true if you do feature deployments with kubernetes.
Is there a simple way to deploy a "token secret" with multiple DOPPLER tokens inside and use that to create other secrets?
Usercase:
- Have a project that contains all the doppler tokens for the different configurations you deploy in kubernetes. At this point im deploying around 10 token secrets and its getting kumbersome to deploy them by hand.
- deploy these tokens into the cluster using doppler
- Use the deployed secret of that operation to feed other doppler configurations inside the cluster.
basically im looking for this:
apiVersion: secrets.doppler.com/v1alpha1
kind: DopplerSecret
metadata:
name: dopplersecret-backups
namespace: doppler-operator-system
spec:
host: https://api.doppler.com
managedSecret:
name: dopplersecret-staging-postgres
namespace: postgres-staging
type: Opaque
resyncSeconds: 60
tokenSecret:
name: doppler-cluster-tokens
**KEY**: token-backups
verifyTLS: true
But maybe there is a better way which i simply cant see?
thanks
Hey guys,
First of all thank you for the operator, we use it constantly.
Now there has come a point where we are spending more time deploying "token secrets" into the cluster than anything esle, which is especially true if you do feature deployments with kubernetes.
Is there a simple way to deploy a "token secret" with multiple DOPPLER tokens inside and use that to create other secrets?
Usercase:
basically im looking for this:
But maybe there is a better way which i simply cant see?
thanks