Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Tags
- shebang
- extends
- Java
- constructor
- public static final
- 깊은 복사
- Wrapper class
- down casting
- arraycopy
- Inbound
- has-a
- identityHashCode
- 파이참
- Up Casting
- 내부클래스
- 셔뱅
- pycharm
- 엔드포인트
- dbeaver
- parameter group
- generic programming
- node.js
- 스트림
- lambda
- 얕은 복사
- 자바
- finalize
- access modifier
- Stream
- singletone
Archives
- Today
- Total
٩(๑•̀o•́๑)و
15. Jenkins 본문
# 로그에서 비밀번호 확인
kubectl logs podID -n jenkins
# 샘플 파이프 라인 작성
# 샘플 스크립트 작성
node {
stage('Ready') {
sh "echo 'Ready'"
}
stage('Build') {
sh "echo 'Build'"
}
stage('Deploy') {
sh "echo 'Deply'"
}
}
# 파이프 라인 실행
# 어디까지 했나
# 참고
https://www.digitalocean.com/community/tutorials/how-to-install-jenkins-on-kubernetes
How To Install Jenkins on Kubernetes | DigitalOcean
Jenkins is a widely-used open source automation server that can set up CI/CD pipelines. In this tutorial, we will install Jenkins on Kubernetes. To demonstrate its power and ease of use, we will then access the Jenkins UI and run a sample pipeline.
www.digitalocean.com
'Container Infrastructure > Side Project_202108' 카테고리의 다른 글
17. Jenkins - Slack 연동 (0) | 2021.08.30 |
---|---|
16. Jenkins PipeLine 작성 (0) | 2021.08.30 |
14. NFS 설치 (0) | 2021.08.29 |
13. Helm (0) | 2021.08.29 |
12. Docker Container (0) | 2021.08.28 |