-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathhelmfile.yaml
More file actions
54 lines (49 loc) · 1.39 KB
/
helmfile.yaml
File metadata and controls
54 lines (49 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
---
# yaml-language-server: $schema=https://json.schemastore.org/helmfile
helmDefaults:
wait: true
waitForJobs: true
timeout: 600
repositories:
- name: prometheus-community
url: https://prometheus-community.github.io/helm-charts
- name: cilium
url: https://helm.cilium.io
releases:
- name: prometheus-operator-crds
set:
- name: kubeVersion
value: "1.34"
namespace: o11y
chart: prometheus-community/prometheus-operator-crds
version: 28.0.1
- name: cilium
namespace: net
createNamespace: false
chart: cilium/cilium
version: 1.19.3
values:
- cilium.yaml
needs: ["o11y/prometheus-operator-crds"]
hooks:
- events: ["presync"]
showlogs: true
command: "sh"
args:
- "-c"
- "kubectl create namespace net --dry-run=client -o yaml | kubectl label --local -f - pod-security.kubernetes.io/enforce=privileged -o yaml --dry-run=client | kubectl apply -f -"
- name: flux-operator
namespace: flux-system
chart: oci://ghcr.io/controlplaneio-fluxcd/charts/flux-operator
version: 0.48.0
values:
- flux-operator.yaml
needs: ["net/cilium"]
- name: flux-instance
namespace: flux-system
chart: oci://ghcr.io/controlplaneio-fluxcd/charts/flux-instance
version: 0.48.0
wait: false
values:
- flux-instance.yaml
needs: ["flux-system/flux-operator"]