Weekend Sale - Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: sntaclus

Which of the following sections must exist in a Packer template?

A.

images

B.

provisioners

C.

builders

D.

variables

E.

post-processsors

How is a Docker container image retrieved from a Docker registry?

A.

Docker retrieves a ZIP archive which is extracted into the container’s root file system.

B.

Multiple stacked images are retrieved and layered on top of each other.

C.

A flat hard disk image is downloaded once per container and mounted as the root file system.

D.

The registry merger all components of the image into one file which is shipped to Docker.

E.

The container is built from an ISO file along with a configuration for an unattended installation.

Which of the log messages below matches the following Logstash grok filter?

grok {

match => [“message”, “%{SYSLOGBASE} new node %{IPORHOST:node}” ]

}

A.

Jun 30 00:36:49 headnode: new node 198.51.100.103 at clustermanager:12353

B.

Jun 30 00:36:49 headnode clustermanager[12353]: new node 198.51.100.103

C.

Jun 30 00:36:49 headnode clustermanager[198.51.100.103]: new node

D.

%{SYSLOG-FROM:headnode clustermanager[12353]} new node 198.51.100.103

E.

clustermanager[12353]: Jun 30 00:36:49 headnode new node 198.51.100.103

Which of the following elements are presents in a Vagrant box file? (Choose two correct answers.)

A.

A Vagrant guest configuration file that is used to create instances of the box.

B.

Configuration files for provisioners such as Ansible.

C.

The installer for the Vagrant version which is required to run the box.

D.

A metadata file describing the box and its requirements.

E.

A base file system image in a format supported by the provider of the box.

What happens when a merge conflict occurs in git? (Choose two correct answers.)

A.

The conflicting files remain unchanged in the local repository.

B.

Conflict markers are added to the files.

C.

A new branch containing the remote changes is created.

D.

The affected files are flagged as conflicting.

E.

The newest version is placed in the local repository.

What implications does container virtualization have for DevOps? (Choose two answers.)

A.

Containers decouple the packaging of an application from its infrastructure.

B.

Containers require developers to have detailed knowledge of their IT infrastructure.

C.

Containers let developers test their software under production conditions.

D.

Containers complicate the deployment of software and require early deployment tests.

E.

Containers require application specific adjustment to the container platform.

Consider the following Kubernetes Deployment:

With the ReplicaSet:

And the Pods:

What happens if one of the Pods is terminated with the command kubect1 pod delete?

A.

The remaining Pods are stopped and the Deployment switches to the state Failed.

B.

The number of replicas in the ReplicaSet is changed to 4.

C.

The ReplicaSet immediately starts a new replacement Pod.

D.

The remaining Pods are stopped and a new ReplicaSet is started.

E.

The Deployment switches to the state Degraded.

Which of the following kinds of data are suitable as artifacts in a continuous delivery pipeline? (Choose three correct answers.)

A.

Executable applications such as .exe files or .jar packages.

B.

Copies of the contents of source code repositories.

C.

Build configuration files such as Makefiles or Maven configurations.

D.

Compiled packages to be installed by a Linux package manager.

E.

Docker container images which contain an application.