theshire/kubernetes/bootstrap/helmfile.yaml

61 lines
1.6 KiB
YAML
Raw Normal View History

2024-03-19 12:37:21 -05:00
---
# yaml-language-server: $schema=https://json.schemastore.org/helmfile
2024-04-21 05:46:54 -05:00
helmDefaults:
wait: true
waitForJobs: true
timeout: 600
recreatePods: true
force: true
2024-03-19 12:37:21 -05:00
repositories:
- name: cilium
url: https://helm.cilium.io
- name: coredns
url: https://coredns.github.io/helm
- name: postfinance
url: https://postfinance.github.io/kubelet-csr-approver
2024-03-19 12:37:21 -05:00
releases:
2024-08-17 11:13:39 -05:00
- name: prometheus-operator-crds
namespace: observability
chart: oci://ghcr.io/prometheus-community/charts/prometheus-operator-crds
version: 14.0.0
2024-03-19 12:37:21 -05:00
- name: cilium
namespace: kube-system
chart: cilium/cilium
2024-08-14 08:01:20 -05:00
version: 1.16.1
values:
- ../apps/kube-system/cilium/app/helm-values.yml
needs:
- observability/prometheus-operator-crds
- name: coredns
namespace: kube-system
chart: coredns/coredns
version: 1.32.0
values:
- ../apps/kube-system/coredns/app/helm-values.yml
needs:
- observability/prometheus-operator-crds
- kube-system/cilium
- name: kubelet-csr-approver
2024-04-21 05:56:38 -05:00
namespace: kube-system
chart: postfinance/kubelet-csr-approver
version: 1.2.2
values:
- ../apps/kube-system/kubelet-csr-approver/app/helm-values.yml
needs:
- observability/prometheus-operator-crds
- kube-system/cilium
- kube-system/coredns
- name: spegel
namespace: kube-system
chart: oci://ghcr.io/spegel-org/helm-charts/spegel
2024-09-05 07:03:27 -05:00
version: v0.0.24
values:
- ../apps/kube-system/spegel/app/helm-values.yml
needs:
- observability/prometheus-operator-crds
- kube-system/cilium
- kube-system/coredns
- kube-system/kubelet-csr-approver