UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
keycloak.yaml 713 B
apiVersion: source.toolkit.fluxcd.io/v1beta1
kind: GitRepository
metadata:
  name: secrets
  namespace: bigbang
spec:
  interval: 1m0s
  # NOTE: We could use the same "bigbang" repository, but secrets are usually committed to a consumer owned repo,
  #       so we are demonstrating that here with a new `GitRepository` resource pointed to the same repo
  url: https://repo1.dso.mil/platform-one/big-bang/bigbang.git
  ref:
    branch: master
---
apiVersion: kustomize.toolkit.fluxcd.io/v1beta1
kind: Kustomization
metadata:
  name: secrets
  namespace: bigbang
spec:
  interval: 1m0s
  sourceRef:
    kind: GitRepository
    name: secrets
    namespace: bigbang
  path: "./tests/ci/keycloak-certs"
  prune: true