Question 28 of 32 from exam 300-910-DEVOPS: Implementing DevOps Solutions and Practices using Cisco Platforms

Question 28 of 32 from exam 300-910-DEVOPS: Implementing DevOps Solutions and Practices using Cisco Platforms

Question

kind: pipeline
name: testl
platform:
os: linux
arch: amd64
steps:
- name: test
image: postgres:9-alpine
commands :
- sleep 10
- psql -U postgres -d test -h database -c “SELECT version() ;”
services:
- name: database
image: postgres
environment:

POSTGRES DB: test
POSTGRES USER: postgres

kind: pipeline

name: test2

platform:
Linux

- sleep 10

- psql -U postgres -d test -h database -c “SELECT version() ;”
services:

- name: database
image: postgres
environment:
POSTGRES DB: test
POSTGRES USER: postgres

Refer to the exhibit.

What is the user doing with Drone in this automated test?

Answers

Explanations

Click on the arrows to vote for the correct answer

A. B. C. D.

D.