Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cicd : setup_jenkins.yml #22

Merged
merged 1 commit into from
Nov 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions k8s-cluster-config/playbooks/setup_jenkins.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
- name: Setup Jenkins with Helm
hosts: master
vars:
repo_url: "https://github.com/Parrotalk/Parrotalk-Manifests.git"
branch: "main" # 사용할 브랜치 (예: main)
environment: "dev" # 설치할 환경 (dev/prod)
manifests_path: "/tmp/Parrotalk-Manifests" # 로컬 임시 경로
tasks:
- name: Clone Parrotalk-Manifests repository
git:
repo: "{{ repo_url }}"
dest: "{{ manifests_path }}"
version: "{{ branch }}"

- name: Add Jenkins Helm Repository
shell: |
helm repo add jenkins https://charts.jenkins.io
helm repo update
args:
executable: /bin/bash

- name: Install Jenkins with Helm
shell: |
helm upgrade --install jenkins-{{ environment }} jenkins/jenkins \
--namespace jenkins-{{ environment }} \
--create-namespace \
-f {{ manifests_path }}/bootstrap/jenkins/values-{{ environment }}.yaml
args:
executable: /bin/bash