Kubernetesdevops
From Zero to Kubernetes Expert
Apr 7, 2026
ViewConfig Basics: Jobs, Steps & Executors Minimal Config # .circleci/config.yml version: 2.1 jobs: build-and-test: docker: - image: cimg/node:20.11 steps: - checkout - restore_cache: keys: - v1-deps-{{ checksum "package-loc…
ReadWorkflows, Orbs, Workspaces & Secrets Fan-Out / Fan-In workflows: ci: jobs: - build - lint: requires: [build] - unit-tests: requires: [build] - integration-tests: requires: [build] - deploy: requires: [lint, unit-tests, …
ReadSave this stack to your personal DevRecall — add your own notes, track what you're learning, and share what you know with the community.
Get started — free forever