Openshift 1
Openshift 1
Key Features
● Container Orchestration: Manages the deployment and scaling of containerized
applications.
● Multi-Tenancy: Supports multiple users and teams within the same environment
while ensuring security and isolation.
● Integrated CI/CD: Provides tools for continuous integration and continuous
deployment to automate application delivery.
● Developer Tools: Offers a rich set of tools for developers, including
source-to-image (S2I) capabilities to build images directly from source code.
Questions:
1. What is OpenShift?
OpenShift is a Kubernetes-based container platform by Red Hat that facilitates
application development, deployment, and management in both cloud and
on-premises environmen
2. How do you create a new project in OpenShift?
Use the commaoc new-project <project-name> to create a new project in
OpenShift, establishing a dedicated namespace for your resources.
3. How do you deploy an application from a Docker image?
Deploy an application using the commaoc new-app <docker-image>, which
creates a new application based on the specified Docker image.
4. What is Source-to-Image (S2I)?
S2I is a build tool in OpenShift that creates reproducible Docker images from
source code, streamlining the process of deploying applicatio
5. How can you check the status of pods?
Uoc get pods to list all pods in the current project and check their status,
including running, pending, or failed states.