본문으로 건너뛰기

Gateway API CRD 설치 가이드

설치

helm repo add lol-iot https://lol-iot.github.io/helm-charts
helm repo update lol-iot \
&& helm search repo lol-iot/gateway-api -l | head -n 10
helm pull lol-iot/gateway-api --version 1.3.0
helm show values lol-iot/gateway-api --version 1.3.0 > gateway-api-1.3.0.yaml
gateway-api-values.yaml
experimental: false
helm template gateway-api lol-iot/gateway-api \
--version 1.3.0 \
-n kube-system \
-f gateway-api-values.yaml \
> gateway-api.yaml
helm upgrade gateway-api lol-iot/gateway-api \
--install \
--history-max 5 \
--version 1.3.0 \
-n kube-system \
-f gateway-api-values.yaml