0% found this document useful (0 votes)
13 views

Openshift 1

Uploaded by

ujjawala1501
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views

Openshift 1

Uploaded by

ujjawala1501
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

What is OpenShift?

OpenShift is a Platform as a Service (PaaS) developed by Red Hat that allows


developers to build, deploy, and manage applications in a cloud environment. It is built
on top of Kubernetes, providing additional features for application development and
management.

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.

You might also like