Book Image

Learn OpenShift

By : Denis Zuev, Artemii Kropachev, Aleksey Usov
Book Image

Learn OpenShift

By: Denis Zuev, Artemii Kropachev, Aleksey Usov

Overview of this book

Docker containers transform application delivery technologies to make them faster and more reproducible, and to reduce the amount of time wasted on configuration. Managing Docker containers in the multi-node or multi-datacenter environment is a big challenge, which is why container management platforms are required. OpenShift is a new generation of container management platforms built on top of both Docker and Kubernetes. It brings additional functionality to the table, something that is lacking in Kubernetes. This new functionality significantly helps software development teams to bring software development processes to a whole new level. In this book, we’ll start by explaining the container architecture, Docker, and CRI-O overviews. Then, we'll look at container orchestration and Kubernetes. We’ll cover OpenShift installation, and its basic and advanced components. Moving on, we’ll deep dive into concepts such as deploying application OpenShift. You’ll learn how to set up an end-to-end delivery pipeline while working with applications in OpenShift as a developer or DevOps. Finally, you’ll discover how to properly design OpenShift in production environments. This book gives you hands-on experience of designing, building, and operating OpenShift Origin 3.9, as well as building new applications or migrating existing applications to OpenShift.
Table of Contents (24 chapters)

Questions

  1. What CI/CD method allows you to automate the application delivery process without any human intervention? choose one:
    1. Continuous delivery
    2. Continuous deployment
    3. Continuous integration
    4. Continuous automation
  2. Which three CI/CD pipeline components does OpenShift use? choose three:
    1. OpenShift Domain Specific Language
    2. Jenkins Pipeline Build Strategy
    3. Jenkins Java Connector
    4. Jenkinsfile
    5. Jenkins Build Strategy
  3. You have to manually configure OpenShift authentication for OpenShift pipelines with Jenkins:
    1. True
    2. False
  4. What command in Jenkinsfile allows you to implement a manual approval procedure? choose one:
    1. Input
    2. Hold
    3. Approve
    4. Accept
  5. Which menu in the OpenShift GUI brings you to the OpenShift pipelines page? choose one:
    1. Build | Pipelines
    2. Jenkins | Pipelines
    3. Build | Jenkins
    4. Overview
  6. The CI/CD pipeline stages in Jenkinsfile are predefined, and cannot be changed:
    1. True...