Navigate OpenShift Console¶
Learn how to navigate the OpenShift web console to view and manage your deployed applications effectively.
Introduction¶
The OpenShift web console provides administrators and developers with tools to manage clusters, applications, and resources. Use the console to deploy applications, monitor performance, and troubleshoot issues.
Accessing the Console¶
Login Process¶
-
Find the Console URL by navigating to developers.intility.com/clusters and selecting your cluster
-
Click "Connect to your cluster" - you'll be automatically logged in via SSO
Bookmark Your Console
Save the console URL to your bookmarks for quick access. Each cluster has its own unique console URL.
Common Tasks¶
Finding Your Applications¶
- Select your project using the project dropdown
- Navigate to Workloads > Deployments to see running applications
- Check Routes in Networking > Routes for public URLs
Viewing Application Logs¶
Via Console:
- Workloads > Pods → Select pod → Logs tab
- Workloads > Deployments → Select deployment → Pods tab → Select pod
CLI Equivalent:
Checking Application Health¶
- Deployment Status - Green indicates healthy, red indicates issues
- Pod Status - Running/Ready count should match desired replicas
- Events - Check for recent warning or error events
- Metrics - Monitor CPU, memory, and network usage
Accessing Applications¶
- Find the Route in Networking > Routes
- Click the Location URL to open your application
- Verify SSL certificate (look for the lock icon)
Scaling Applications¶
Via Console:
- Navigate to Workloads > Deployments
- Click on your deployment
- Click Actions > Edit Deployment
- Modify the
replicasfield
Via CLI:
Troubleshooting Common Issues¶
Application Not Loading¶
- Check Route Status - Ensure route exists and is properly configured
- Verify Service - Confirm service is selecting the correct pods
- Pod Health - Ensure pods are running and ready
- Check Logs - Look for application startup errors
Pod Issues¶
Pod Stuck in Pending: - Check resource requests vs. cluster capacity - Verify node selectors and affinity rules - Review persistent volume claims
Pod Crashing: - Check application logs for errors - Verify resource limits aren't too restrictive - Review health check configurations
Performance Issues¶
- Resource Usage - Monitor CPU and memory consumption
- Network Latency - Check service mesh and ingress configuration
- Storage Performance - Verify persistent volume performance
Next Steps¶
Continue learning the basics:
- Basic Commands - Essential CLI commands for daily use
Ready for advanced topics:
- Deploy with GitOps - Automated deployment workflows
- Secrets - Secure configuration handling
- ConfigMaps - Managing app configuration