
CI/CD & Jenkins
Stages that an Organization Follows in CI/CD: Jenkins Folder Structure /var/lib/jenkins/ │ ├── 📦 plugins/ → Installed plugins (.jpi files) │ ├── git.jpi │ ├── docker.jpi │ └── slack.jpi │ ├── 💼 jobs/ → Job configurations only │ ├── my-app/ │ │ ├── builds/ → Build history │ │ │ ├── 1/ → Build #1 │ │ │ │ ├── log → Console output │ │ │ │ └── build.xml │ │ │ ├── 2/ → Build #2 │ │ │ └── 3/ → Build #3 │ │ └── config.xml → Job configuration │ │ │ └── another-job/ │ ├── builds/ │ └── config.xml │ ├── 🔨 workspace/ → ALL job workspaces │ ├── my-app/ → my-app workspace │ │ ├── src/ │ │ ├── package.json │ │ └── node_modules/ │ │ │ ├── another-job/ → another-job workspace │ │ ├── src/ │ │ └── pom.xml │ │ │ └── pipeline-1/ → pipeline-1 workspace │ └── Dockerfile │ ├── 👥 users/ → User accounts & settings │ ├── admin/ │ │ └── config.xml │ └── developer/ │ └── config.xml │ ├── 📝 logs/ → Jenkins system logs │ ├── 🔐 secrets/ → Encryption keys & secrets │ ├── master.key │ └── hudson.util.Secret │ ├── ⚙️ c
Continue reading on Dev.to
Opens in a new tab



