1
fastlane
⭐ 41,559
Deployment
The easiest way to automate building, testing, and releasing mobile apps for iOS and Android.
View on GitHub →
2
traefik
⭐ 63,282
Kubernetes
The Cloud Native Application Proxy — modern reverse proxy and load balancer for microservices.
View on GitHub →
3
yq
⭐ 15,430
Terraform / IaC
A lightweight and portable command-line YAML, JSON, and XML processor.
View on GitHub →
4
semaphore
⭐ 13,642
Ansible
Modern UI for Ansible — visual automation framework making Ansible accessible to entire teams.
View on GitHub →
5
uptime-kuma
⭐ 87,108
Monitoring
A fancy self-hosted monitoring tool with a beautiful UI — the modern alternative to Uptime Robot.
View on GitHub →
6
the-book-of-secret-knowledge
⭐ 223,314
DevOps
A collection of inspiring lists, manuals, cheatsheets, blogs, hacks, one-liners, cli/web tools.
View on GitHub →
7
jenkins
⭐ 25,285
Jenkins / CI
The leading open source automation server — build, deploy, and automate any project.
View on GitHub →
8
ohmyzsh
⭐ 187,191
Developer Tooling
🙃 A delightful community-driven framework for managing your zsh configuration.
View on GitHub →
9
prometheus-stack
⭐ 4,555
Prometheus
Kubernetes manifests, Grafana dashboards, and Prometheus rules for a complete monitoring stack.
View on GitHub →
10
DevOps-Guide
⭐ 9,220
Grafana / Learning
DevOps Guide from basic understanding to complete CI/CD setup — comprehensive learning path.
View on GitHub →
🔎
FDE Repository Search Workflow
Automatically discovers and reports top FDE repositories across all major domains
⏰ Daily at 12:00 UTC 🖱️ Manual Dispatch
Capabilities
  • Search deployment, kubernetes, terraform, ansible, monitoring repositories
  • Filter by MIT license and sort by star count
  • Retrieve descriptions, star counts, and direct links
  • Generate a markdown summary report and commit it
# .github/workflows/fde-repo-search.yml name: FDE Repository Discovery on: schedule: - cron: '0 12 * * *' workflow_dispatch: jobs: search-repos: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Search FDE Repositories env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | DOMAINS=("deployment" "kubernetes" "terraform" "ansible" "monitoring" "jenkins") echo "# FDE Resource Report - $(date)" > REPORT.md for DOMAIN in "${DOMAINS[@]}"; do echo "## $DOMAIN" >> REPORT.md gh api "search/repositories?q=$DOMAIN+license:MIT&sort=stars&per_page=5" \ --jq '.items[] | "- [\(.name)](\(.html_url)) ⭐\(.stargazers_count)"' >> REPORT.md done - name: Commit Report run: | git config --global user.email "actions@github.com" git config --global user.name "GitHub Actions" git add REPORT.md && git diff --staged --quiet || git commit -m "chore: update FDE report" && git push
🚀
Deployment CI/CD Pipeline
Complete build → test → containerize → deploy workflow with blue-green strategy
🌿 Push to main 🖱️ Manual Dispatch
Pipeline Stages
  • Build application artifacts and run test suites
  • Build Docker image and push to registry
  • Blue-Green deployment with traffic switching
  • Automated smoke tests and rollback on failure
# .github/workflows/deployment-pipeline.yml name: Production Deployment Pipeline on: push: branches: [main] workflow_dispatch: jobs: build-and-test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Build & Test run: | make build && make test containerize: needs: build-and-test runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Build & Push Docker run: | docker build -t $IMAGE_TAG . docker push $IMAGE_TAG deploy-production: needs: containerize environment: production runs-on: ubuntu-latest steps: - name: Blue-Green Deploy run: | kubectl set image deployment/app-green app=$IMAGE_TAG kubectl rollout status deployment/app-green kubectl patch service app-svc -p '{"spec":{"selector":{"slot":"green"}}}' - name: Smoke Tests run: curl -f $PROD_URL/health || (kubectl rollout undo deployment/app-green && exit 1)
🔐
Infrastructure as Code Validation
Terraform format, validation, security scanning, and cost estimation on PRs
🔀 Pull Requests 📁 infra/** files
Checks Performed
  • terraform fmt — format validation
  • terraform validate — syntax and logic checks
  • TFLint — best practice enforcement
  • Checkov — security policy scanning
  • Infracost — cost estimation diff on PR
# .github/workflows/iac-validation.yml name: IaC Validation & Security on: pull_request: paths: ['infra/**', 'terraform/**'] jobs: validate: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: hashicorp/setup-terraform@v3 - name: Terraform Format Check run: terraform fmt -check -recursive - name: Terraform Validate run: | terraform init -backend=false terraform validate - name: TFLint uses: terraform-linters/setup-tflint@v4 - name: Checkov Security Scan uses: bridgecrewio/checkov-action@v12 with: directory: infra/ framework: terraform - name: Infracost Estimate uses: infracost/actions/setup@v3
Query 01
deployment license:MIT
Find MIT-licensed deployment tools and frameworks — the foundation for any FDE toolkit.
Query 02
kubernetes license:MIT
Discover Kubernetes resources, operators, and projects for container orchestration.
Query 03
terraform license:MIT
Find Infrastructure as Code modules, providers, and Terraform tooling.
Query 04
ansible license:MIT
Ansible automation playbooks, roles, and configuration management resources.
Query 05
monitoring license:MIT
Monitoring, logging, observability, and alerting tools for production systems.
Query 06
jenkins OR gitlab-ci license:MIT
CI/CD pipeline tools and integration frameworks for automated build pipelines.
Query 07
docker license:MIT
Container tooling, Docker utilities, and image management projects.
Query 08
deployment kubernetes terraform ansible monitoring jenkins docker license:MIT
Comprehensive FDE search — combine all major domains in one query for broad discovery.
Query 09
devops knowledge guide license:MIT
DevOps knowledge repositories, learning guides, and reference documentation.
Query 10
infrastructure automation cloud deployment license:MIT
All FDE categories in one comprehensive cloud infrastructure search query.

💡 Usage Tips

  • Paste any query directly into the GitHub search bar at github.com/search
  • Modify license:MIT to license:apache-2.0 or remove it for broader results
  • Add sort:stars to the URL to see most popular results first
  • Combine multiple queries with OR for broader discovery scopes
🥇
the-book-of-secret-knowledge
DevOps Knowledge Base
⭐ 223,314
🥈
uptime-kuma
Monitoring & Uptime
⭐ 87,108
🥉
traefik
Kubernetes & Load Balancing
⭐ 63,282
4
fastlane
Build Automation & Deployment
⭐ 41,559
5
jenkins
CI/CD Automation
⭐ 25,285