mirror of
https://github.com/external-secrets/external-secrets.git
synced 2024-12-14 11:57:59 +00:00
fc7281a39b
Also, some generators's examples didn't have the `.metadata.name` property. Signed-off-by: Sebastián Gómez <sebastiangomezcorrea@gmail.com>
29 lines
706 B
YAML
29 lines
706 B
YAML
apiVersion: generators.external-secrets.io/v1alpha1
|
|
kind: GCRAccessToken
|
|
metadata:
|
|
name: gcr-gen
|
|
spec:
|
|
# project where gcr lives in
|
|
projectID: ""
|
|
|
|
# choose authentication strategy
|
|
auth:
|
|
# option 1: workload identity
|
|
workloadIdentity:
|
|
# point to the workload identity
|
|
# service account
|
|
serviceAccountRef:
|
|
name: ""
|
|
audiences: []
|
|
# the cluster can live in a different project or location
|
|
# use the following fields to configure where the cluster lives
|
|
clusterLocation: ""
|
|
clusterName: ""
|
|
clusterProjectID: ""
|
|
|
|
|
|
# option 2: GCP service account
|
|
secretRef:
|
|
secretAccessKeySecretRef:
|
|
name: ""
|
|
key: ""
|