Lpi Linux Professional Institute DevOps Tools Engineer Exam 701 - 701-100 Exam Practice Test
Which of the following commands lists the nodes in a Docker Swam cluster?
Correct Answer: E
Vote an answer
Explanation: Only visible for Fast2test members. You can sign-up / login (it's free).
Which of the following elements are presents in a Vagrant box file? (Choose two correct answers.)
Correct Answer: B,C
Vote an answer
Explanation: Only visible for Fast2test members. You can sign-up / login (it's free).
Which Ansible command is used to manage and store sensitive data in encrypted files?
(Specify ONLY the command without any path or parameters.)
(Specify ONLY the command without any path or parameters.)
Correct Answer:
ansible-vault
Explanation:
The ansible-vault command is used to manage and store sensitive data in encrypted files within Ansible.
This allows users to keep variables, passwords, and other confidential information secure by encrypting them in a file.
References: Ansible Documentation - Ansible Vault
Explanation:
The ansible-vault command is used to manage and store sensitive data in encrypted files within Ansible.
This allows users to keep variables, passwords, and other confidential information secure by encrypting them in a file.
References: Ansible Documentation - Ansible Vault
What implications does container virtualization have for DevOps? (Choose two answers.)
Correct Answer: C,E
Vote an answer
Explanation: Only visible for Fast2test members. You can sign-up / login (it's free).
The following command is issued on two docker nodes:
docker network create --driver bridge isolated_nw
Afterwards, one container is started at each node with the parameter --network=isolated_nw. It turns out that the containers can not interact with each other. What must be done in order to allow the containers to interact with each other? (Choose two correct answers.)
docker network create --driver bridge isolated_nw
Afterwards, one container is started at each node with the parameter --network=isolated_nw. It turns out that the containers can not interact with each other. What must be done in order to allow the containers to interact with each other? (Choose two correct answers.)
Correct Answer: A,B
Vote an answer
Explanation: Only visible for Fast2test members. You can sign-up / login (it's free).
A declarative Jenkins pipeline contains the following excerpt:
parameters {
string (name: 'TargetEnvironment', defaultValue: 'staging', description: 'Target environment')
}
How can a task use the value provided for TargetEnvironment?
parameters {
string (name: 'TargetEnvironment', defaultValue: 'staging', description: 'Target environment')
}
How can a task use the value provided for TargetEnvironment?
Correct Answer: A
Vote an answer
Explanation: Only visible for Fast2test members. You can sign-up / login (it's free).