Openshift
A comprehensive skill catalog for AI agents
npx -y skills add G1Joshi/Agent-Skills --skill openshiftAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 10 stars10 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
OpenShift enterprise Kubernetes platform. Use for enterprise K8s.
SKILL.md
1.7 KB, 406 tokens by cl100k_base, as published. Nobody here has run it
OpenShift
Red Hat OpenShift is an enterprise-ready Kubernetes container platform with full-stack automated operations. In 2025, OpenShift Virtualization (running VMs side-by-side with containers) is a key feature.
When to Use
- Hybrid Cloud: Consistent experience across On-Prem and Cloud.
- Enterprise Requirements: Built-in strict security (SCC), registry, monitoring, and CI/CD.
- VM Migration: Lift-and-shift VMs into K8s using OpenShift Virtualization (KubeVirt).
Quick Start (OC CLI)
# Login
oc login -u developer -p developer https://api.crc.testing:6443
# Create Project (Namespace)
oc new-project my-app
# Deploy from Source (Source-to-Image)
oc new-app nodejs~https://github.com/sclorg/nodejs-ex.git
Core Concepts
Source-to-Image (S2I)
Build container images directly from source code without writing a Dockerfile. OpenShift detects the language (Node/Java/Python) and builds it.
Routes
OpenShift's native ingress controller. Used long before K8s Ingress/Gateway API.
Operators
First-class citizens. Everything in OpenShift is managed by an Operator.
Best Practices (2025)
Do:
- Use OpenShift GitOps: ArgoCD is fully integrated.
- Use
oc: It is a superset ofkubectl. You rarely needkubectlon OpenShift. - Leverage Virtualization: Run legacy Windows/Linux VMs as Pods to decommission old VMWare clusters.
Don't:
- Don't run as root: OpenShift forbids this by default. Don't disable SCCs (Security Context Constraints) just to make a bad image work. Fix the image.
References
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.