From e7fb506118fa3d842d1bdfe8839dd5fce711313c Mon Sep 17 00:00:00 2001 From: pricelees Date: Thu, 5 Jun 2025 19:22:05 +0900 Subject: [PATCH] =?UTF-8?q?Readme=20=EB=B0=8F=20=EA=B8=B0=EB=B3=B8=20?= =?UTF-8?q?=EC=84=A4=EC=B9=98=20=EB=B0=A9=EB=B2=95=20=EC=9E=91=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..b2ac183 --- /dev/null +++ b/README.md @@ -0,0 +1,29 @@ +# Grafana Alloy - 쿠버네티스 + +Grafana Alloy의 설정(컴포넌트) 파일을 다루는 방법을 소개합니다. 크게 helm values에 작성하는 방법(v1), configmap을 별도로 만들어 사용하는 방법(v2)이 있습니다. + + +### 설치 +**Helm 저장소 등록** + +```bash +helm repo add grafana https://grafana.github.io/helm-charts +helm repo update +``` + +**네임스페이스 생성** +```bash +kubectl create namespace +``` + +**Alloy Install** +```bash +helm install --namespace grafana/alloy + +# 또는 네임스페이스 생성까지 한 번에 진행 +helm install grafana/alloy --namespace= --create-namespace + +# 별도로 정의한 values를 사용하는 경우 +helm install grafana/alloy -f -n +``` +