kubesphere-devops-jenkins
Use when configuring Jenkins in KubeSphere DevOps, including agent customization, LDAP/OIDC integration, build artifact retrieval, or troubleshooting Jenkins issues
npx skills add kubesphere/kubesphere --skill kubesphere-devops-jenkins --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# KubeSphere DevOps Jenkins Configuration ## Overview KubeSphere DevOps embeds Jenkins as the CI engine. Jenkins is configured via Configuration as Code (CasC) and provides the underlying pipeline execution environment. Understanding Jenkins configuration is essential for customizing agents, authentication, and resource management. ## When to Use - Accessing Jenkins console directly - Configuring LDAP or OIDC authentication - Customizing Jenkins agent images - Configuring GitLab or other SCM servers - Troubleshooting Jenkins startup issues - Updating Jenkins after DevOps upgrade - Triggering builds via API - Downloading build artifacts - Viewing build logs and status ## Accessing Jenkins Console ### Get Admin Credentials ```bash # Get Jenkins admin user and password kubectl -n kubesphere-devops-system get secret devops-jenkins -o yaml # Decode values echo "<jenkins-admin-password-base64>" | base64 -d echo "<jenkins-admin-user-base64>" | base64 -d ``` ### Get Jenkins NodePort ```bash kubectl -n kubesphere-devops-system get svc devops-jenkins # Default NodePort: 30180 ``` Access via: `http://<master-node-ip>:30180` ## Configuration As Code (CasC) Jenkins configuration is managed thro
- Overview
- When to Use
- Accessing Jenkins Console
- Get Admin Credentials
- Get Jenkins NodePort
- Configuration As Code (CasC)
- Key Configuration Sections
- Authentication Configuration
- LDAP Integration
- OpenID Connect (OIDC) Integration
- GitLab Integration
- Agent Customization
- Update JNLP Image (v1.2.x)
- Enable Podman for Non-Docker Environments
Get Jenkins admin user and password kubectl -n kubesphere-devops-system get secret devops-jenkins -o yaml Decode values echo "<jenkins-admin-password-base64>" | base64 -d echo "<jenkins-admin-user-base64>" | base64 -d kubectl -n kubesphere-devops-system get svc devops-jenkins Default NodePort: 30180 View current CasC kubectl -n kubesphere-devops-system get cm jenkins-casc-config -o yaml Get current config
What does the kubesphere-devops-jenkins skill do?
Use when configuring Jenkins in KubeSphere DevOps, including agent customization, LDAP/OIDC integration, build artifact retrieval, or troubleshooting Jenkins issues
How do I install it?
Run `npx skills add kubesphere/kubesphere --skill kubesphere-devops-jenkins --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From kubesphere/kubesphere, a repository with 17,016 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
