mirror of https://github.com/fluxcd/flux2.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
561 B
YAML
21 lines
561 B
YAML
---
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: credentials-sync
|
|
data:
|
|
GCR_REGISTRY: gcr.io # set the registry
|
|
KUBE_SECRET: gcr-credentials # does not yet exist -- will be created in the same Namespace
|
|
SYNC_PERIOD: "1800" # 30m -- GCR tokens expire every hour; refresh faster than that
|
|
|
|
|
|
# Bind to the GCP service-account
|
|
---
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: credentials-sync
|
|
namespace: flux-system
|
|
annotations:
|
|
iam.gke.io/gcp-service-account: <name>@<project-id>.iam.gserviceaccount.com # set the GCP service-account
|