Skip to content

Commit 4ac1ffc

Browse files
committedFeb 8, 2025
update flux
1 parent 1873e2a commit 4ac1ffc

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
apiVersion: kustomize.toolkit.fluxcd.io/v1
2+
kind: Kustomization
3+
metadata:
4+
name: apps
5+
namespace: flux-system
6+
spec:
7+
interval: 5m
8+
path: "../../../apps"
9+
sourceRef:
10+
kind: GitRepository
11+
name: flux-system
12+
decryption:
13+
provider: sops
14+
secretRef:
15+
name: sops-age
16+
prune: false

‎kubernetes/cluster/production/flux-system/kustomization.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@ kind: Kustomization
33
resources:
44
- gotk-components.yaml
55
- gotk-sync.yaml
6+
- secrets.yaml
7+
- apps.yaml
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
apiVersion: kustomize.toolkit.fluxcd.io/v1
2+
kind: Kustomization
3+
metadata:
4+
name: secrets
5+
namespace: flux-system
6+
spec:
7+
interval: 5m
8+
path: "./secrets"
9+
sourceRef:
10+
kind: GitRepository
11+
name: flux-system
12+
decryption:
13+
provider: sops
14+
secretRef:
15+
name: sops-age
16+
prune: true

0 commit comments

Comments
 (0)
Please sign in to comment.