Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기cicd-skill
CI/CD pipelines with Git, GitHub Actions, GitLab CI, Jenkins, and deployment strategies.
스타3
포크0
업데이트2025년 12월 30일 11:44
파일 탐색기
7 개 파일SKILL.md
readonly메뉴
CI/CD pipelines with Git, GitHub Actions, GitLab CI, Jenkins, and deployment strategies.
DevOps scripting with Bash, Python, and Go for automation, tooling, and infrastructure management
Cloud infrastructure with AWS, Azure, GCP - architecture, services, security, and cost optimization.
Docker and Kubernetes - containerization, orchestration, and production deployment.
Infrastructure as Code with Terraform, Ansible, and CloudFormation.
Complete Linux administration skill covering process management, filesystem, permissions, package management, users, bash scripting, and system monitoring.
Monitoring and observability with Prometheus, Grafana, ELK Stack, and distributed tracing.
| name | cicd-skill |
| description | CI/CD pipelines with Git, GitHub Actions, GitLab CI, Jenkins, and deployment strategies. |
| sasmp_version | 1.3.0 |
| bonded_agent | 05-cicd-automation |
| bond_type | PRIMARY_BOND |
| parameters | [{"name":"platform","type":"string","required":false,"enum":["github-actions","gitlab-ci","jenkins","argocd"],"default":"github-actions"},{"name":"operation","type":"string","required":true,"enum":["build","test","deploy","rollback"]}] |
| retry_config | {"strategy":"exponential_backoff","initial_delay_ms":1000,"max_retries":3} |
| observability | {"logging":"structured","metrics":"enabled"} |
Master CI/CD pipelines for automated software delivery.
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
| platform | string | No | github-actions | CI/CD platform |
| operation | string | Yes | - | Pipeline operation |
# Git
git checkout -b feature/name
git add -p
git commit -m "type: description"
git rebase -i HEAD~3
git push -u origin feature/name
# GitHub CLI
gh pr create --title "feat: add X"
gh pr checkout 123
gh pr merge --squash
gh run list
gh run view 12345 --log
# Rollback
kubectl rollout undo deployment/app
kubectl rollout history deployment/app
| Strategy | Rollback | Use Case |
|---|---|---|
| Rolling | Slow | Low-risk |
| Blue-Green | Instant | Zero-downtime |
| Canary | Fast | High-risk |
| Symptom | Root Cause | Solution |
|---|---|---|
| Timeout | Slow build | Add caching |
| Test flaky | Unreliable test | Fix isolation |
| Secret missing | Not configured | Add in settings |
| Deploy failed | Auth issue | Check credentials |
kubectl rollout undo