DevOpsDevops Flashcards

1
Q

What is the difference between devops and traditional methods?

A

DevOps is not siloed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Steps in DevOps Process

A

Build
Integrate
Test
Deploy

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

DevOps Benefits

A

-fast rollbacks
-reliaiblity
-consistency
-collaboration
-speed of delivery
-frequency of deployments

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

CI/CD Pipeline Steps

A

Plan
Code
Build
Test
Release
Deploy
Operate

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Source Control Management Tools

A

Bitbucket
Git
Github
Subversion

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Build Automation Tools

A

GitHub CL
Jenkins
Bamboo
Travis
Maven

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Testing Tools

A

Selenium
Appium
Cucumber
JMeter

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Release Management Tools

A

Cloudbees Flow
AWS Code Pipeline
BMC Release
Urban Code Release

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Deployment Tools

A

Azure DEvOps Pipieline
AWS Code Deploy
CloudBees CD
Spinnaker
Octupus DEploy

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Containers

A

Docker
OpenShift
Kubernetes
Helm
Rancher

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Monitoring and Analytics

A

Elastic Stack
SplunkApp
Grafana
App Dynamics

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Git

A

open source distributed version control
implements staging, merging and branching
focuses on speed and performance

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Git Commands

A

Init
Add
Commit
Branch
Checkout
Merge

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Remote Git Commands

A

Push Pull and Clone

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Characteristics of Containers

A

Isolated software unit
contains dependences
lightweight
portable
increased security

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Docker components

A

daemon
file
registry
api
container
client

17
Q

docker commands

A

build
run
pull
push
start
stop
Kill

18
Q

Components of container Orchestration

A

configuration
provisioning
health monitoring
security
scaling

19
Q

Orchestration Tools

A

kubernetes
docker
swarm

20
Q

The git add command is used to add file contents to the index.

A

git add

21
Q

two core components of docker

A

Docker daemon and file
The Docker daemon is used to control and manage containers, and a Dockerfile contains all the commands and settings that are used to build a Docker image. These are both main components of Docker.

22
Q

Which commands can be used to display information about Git?

A

The git branch command lists existing branches (or creates a new branch if a name is specified).
The git status command displays the state of the working directory and the staging area.