33 lines
637 B
YAML
33 lines
637 B
YAML
---
|
|
apiVersion: source.toolkit.fluxcd.io/v1
|
|
kind: GitRepository
|
|
metadata:
|
|
name: online-boutique
|
|
namespace: flux-system
|
|
spec:
|
|
interval: 1h
|
|
url: https://github.com/GoogleCloudPlatform/microservices-demo
|
|
ref:
|
|
branch: main
|
|
---
|
|
apiVersion: helm.toolkit.fluxcd.io/v2
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: online-boutique
|
|
namespace: flux-system
|
|
spec:
|
|
interval: 1h
|
|
targetNamespace: online-boutique
|
|
install:
|
|
createNamespace: true
|
|
chart:
|
|
spec:
|
|
chart: ./helm-chart
|
|
sourceRef:
|
|
kind: GitRepository
|
|
name: online-boutique
|
|
interval: 1h
|
|
values:
|
|
frontend:
|
|
externalService: false
|