From 894ef81e9900b6e9a6ffbed3776a99a4c6561008 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=B0=95=EB=8C=80=EC=84=B1?= Date: Fri, 2 Aug 2024 14:24:19 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=ED=85=8C=EC=8A=A4=ED=8A=B8=20(#8)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Daesung Park --- index.html | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 index.html diff --git a/index.html b/index.html new file mode 100644 index 00000000..93f1e326 --- /dev/null +++ b/index.html @@ -0,0 +1,45 @@ + + + + + + NiFi Helm Chart + + +
+

NiFi Helm Chart

+
+
+
+

소개

+

Apache NiFi를 Kubernetes 클러스터에 배포하기 위한 Helm Chart입니다. 이 Helm Chart를 사용하면 NiFi를 손쉽게 설치하고 관리할 수 있습니다.

+
+
+

특징

+
    +
  • 간편한 설치 및 업그레이드
  • +
  • 유연한 구성 옵션
  • +
  • 확장 가능한 아키텍처
  • +
+
+
+

설치 방법

+
    +
  1. Helm 저장소 추가: +
    helm repo add kurly https://helloworld.kurly.com/helm-nifi
    +
  2. +
  3. Helm 차트 설치: +
    helm install my-nifi nifi/nifi
    +
  4. +
+
+
+

문서

+

자세한 내용은 GitHub 페이지를 참조하세요.

+
+
+
+

© 2023 NiFi Helm Chart

+
+ + \ No newline at end of file From e0b4d506f8eb4f78f2f677f78c1f1beed7e6d174 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=B0=95=EB=8C=80=EC=84=B1?= Date: Fri, 2 Aug 2024 15:43:07 +0900 Subject: [PATCH 2/2] Dp daesung patch 1 (#10) * refactor(git): update GitHub Actions for branch rename (#9) Co-authored-by: Daesung Park * Create static.yml --------- Co-authored-by: Daesung Park --- .github/workflows/static.yml | 43 ++++++++++++++++++++++++++++++++++++ .github/workflows/test.yml | 4 ++-- 2 files changed, 45 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/static.yml diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml new file mode 100644 index 00000000..9ab531bf --- /dev/null +++ b/.github/workflows/static.yml @@ -0,0 +1,43 @@ +# Simple workflow for deploying static content to GitHub Pages +name: Deploy static content to Pages + +on: + # Runs on pushes targeting the default branch + push: + branches: ["test-gh-pages"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + # Single deploy job since we're just deploying + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup Pages + uses: actions/configure-pages@v5 + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + with: + # Upload entire repository + path: '.' + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 971c513c..b6d611f0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,10 +3,10 @@ name: Test on: push: branches: - - master + - main pull_request: branches: - - master + - main jobs: example: