본문 바로가기
728x90
반응형
SMALL

DevOps/CICD7

GitHub Actions Artifact : job(actions) 간 파일 공유 * GitHub Actions Workflow 의 Job 은 각각의 러너에서 수행되며, 기본적으로 산출물을 공유할 수 없음 * 이러한 용도로 "artifact" 를 제공함. 과금 있음 * artifact / log 의 보관 주기는 Actions > general 에서 설정해야 함 * artifact 에 업로드 upload_artifact: runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v2 - name: Create file to upload run: echo "Hello, world!" > example.txt - name: Upload artifact uses: actions/upload-artifact.. 2023. 4. 15.
(Jenkins) Jenkins Logo 변경하기 / 젠킨스 로고 변경 1. "Simple Theme" 플러그인 설치 (젠킨스 재시작 안 해도 됨) 2. CSS 로 수정 Jenkins 관리 > 시스템 설정 > Theme > Extra CSS #jenkins-name-icon{ display: none; } .logo:after { content: ' 로고'; font-weight: bold; font-size: 30px; font-family:"Malgun Gothic", cursive; margin-lef: 200px; margin-right: 12px; color: White; line-hight: 40px; } 2022. 3. 7.
(Jenkins) Finding IP of a Jenkins node / jenkins node 의 IP 확인하기 새 회사에 뉴비로 왔는데 장비들 리스트업이 잘 안 되어 있따.. 암튼 젠킨스 slave node 의 IP 확인하는 법 Script Console (Manage Jenkins -> Nodes -> Select a node -> Script Console) 에서 아래 명령어 실행 println InetAddress.localHost.canonicalHostName 2021. 12. 22.
(jenkins) 빌드 유발, Build Periodically, cron 표기 형식 케이스 (참고) H 07 * * 1-5 vs 00 07 * * 1-5 >> H 표기법이 Spread load evenly by using 2021. 12. 16.
728x90
반응형
LIST