Agent skill · DevOps & Cloud

kubesphere-devops-jenkins

Use when configuring Jenkins in KubeSphere DevOps, including agent customization, LDAP/OIDC integration, build artifact retrieval, or troubleshooting Jenkins issues

kubespheregithub.com/kubesphereGitHub ↗
claude-codeNOASSERTION
Install
npx skills add kubesphere/kubesphere --skill kubesphere-devops-jenkins --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 11 KB
Bundled scripts: none
Path: skills/kubesphere-devops-jenkins/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 17,016
Language: Go
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Overview
  2. When to Use
  3. Accessing Jenkins Console
  4. Get Admin Credentials
  5. Get Jenkins NodePort
  6. Configuration As Code (CasC)
  7. Key Configuration Sections
  8. Authentication Configuration
  9. LDAP Integration
  10. OpenID Connect (OIDC) Integration
  11. GitLab Integration
  12. Agent Customization
  13. Update JNLP Image (v1.2.x)
  14. Enable Podman for Non-Docker Environments
Commands it runs
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
More from kubesphere
All skills →
About this skill
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.

Keep going