chore(k8s-wheatley): Use Helm chart to manage cilium
This commit is contained in:
parent
ea771272e9
commit
6b331ca18f
4 changed files with 47 additions and 7 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -1,3 +1,3 @@
|
||||||
.envrc
|
.envrc
|
||||||
output.yaml
|
output.yaml
|
||||||
chart/
|
charts/
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,14 @@ kind: Kustomization
|
||||||
namespace: kube-system
|
namespace: kube-system
|
||||||
|
|
||||||
resources:
|
resources:
|
||||||
- namespace.yaml
|
|
||||||
- ip-pool.yaml
|
- ip-pool.yaml
|
||||||
- gateways.yaml
|
- gateways.yaml
|
||||||
- httproute.yaml
|
- httproute.yaml
|
||||||
|
|
||||||
|
helmCharts:
|
||||||
|
- name: cilium
|
||||||
|
repo: https://helm.cilium.io
|
||||||
|
namespace: kube-system
|
||||||
|
releaseName: cilium
|
||||||
|
version: 1.18.3
|
||||||
|
valuesFile: values.yaml
|
||||||
|
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
apiVersion: v1
|
|
||||||
kind: Namespace
|
|
||||||
metadata:
|
|
||||||
name: kube-system
|
|
||||||
38
k8s-wheatley/cilium/values.yaml
Normal file
38
k8s-wheatley/cilium/values.yaml
Normal file
|
|
@ -0,0 +1,38 @@
|
||||||
|
k8sServiceHost: localhost
|
||||||
|
k8sServicePort: 7445
|
||||||
|
kubeProxyReplacement: true
|
||||||
|
|
||||||
|
cgroup:
|
||||||
|
hostRoot: /sys/fs/cgroup
|
||||||
|
autoMount:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
|
securityContext:
|
||||||
|
capabilities:
|
||||||
|
ciliumAgent:
|
||||||
|
- CHOWN
|
||||||
|
- KILL
|
||||||
|
- NET_ADMIN
|
||||||
|
- NET_RAW
|
||||||
|
- IPC_LOCK
|
||||||
|
- SYS_ADMIN
|
||||||
|
- SYS_RESOURCE
|
||||||
|
- DAC_OVERRIDE
|
||||||
|
- FOWNER
|
||||||
|
- SETGID
|
||||||
|
- SETUID
|
||||||
|
cleanCiliumState:
|
||||||
|
- NET_ADMIN
|
||||||
|
- SYS_ADMIN
|
||||||
|
- SYS_RESOURCE
|
||||||
|
|
||||||
|
hubble:
|
||||||
|
relay:
|
||||||
|
enabled: true
|
||||||
|
ui:
|
||||||
|
enabled: true
|
||||||
|
|
||||||
|
gatewayAPI:
|
||||||
|
enabled: true
|
||||||
|
enableAlpn: true
|
||||||
|
enableAppProtocol: true
|
||||||
Loading…
Add table
Add a link
Reference in a new issue