From c1cd78c5d409e11ca93d33bf8e5af6b129d525ad Mon Sep 17 00:00:00 2001 From: abregman Date: Fri, 6 Dec 2019 14:49:46 +0200 Subject: [PATCH] Add a couple of questions --- README.md | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 52 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 06a2969..87cfd22 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ :information_source:  This repository contains questions on various DevOps and SRE related topics -:bar_chart:  There are currently **591** questions +:bar_chart:  There are currently **596** questions :books:  To learn more about DevOps check the resources in [DevOpsBit.com](https://devopsbit.com) @@ -283,6 +283,10 @@ Note: cross-dependency is when you have two or more changes to separate projects * CircleCI
+
+What are the limitations or disadvantages of Jenkins?
+
+
Explain the following: @@ -1322,7 +1326,7 @@ This is a great article on the topic: https://www.computerhope.com/jargon/f/file How to list active connections?
-##### DNS +##### Linux DNS
What the file /etc/resolv.conf is used for? What does it include?
@@ -1702,6 +1706,38 @@ def cap(self, string): What are callback plugins? What can you achieve by using callback plugins?
+
+File '/tmp/exercise' includes the following content + +``` +Goku = 9001 +Vegeta = 5200 +Trunks = 6000 +Gotenks = 32 +``` + +With one task, switch the content to: + +``` +Goku = 9001 +Vegeta = 250 +Trunks = 40 +Gotenks = 32 +``` +
+ +``` +- name: Change saiyans levels + lineinfile: + dest: /tmp/exercise + regexp: "{{ item.regexp }}" + line: "{{ item.line }}" + with_items: + - { regexp: '^Vegeta', line: 'Vegeta = 250' } + - { regexp: '^Trunks', line: 'Trunks = 40' } + ... +``` +
## Terraform @@ -2606,6 +2642,10 @@ def reverse_string(string): * filter()
+
+How do you debug Python code?
+
+
What empty return returns?
@@ -3698,7 +3738,7 @@ the pseudo table to retrieve the sum of the prices spent by each customer, then
-What components and services exist in L2 and L3?
+What components and services exist for L2 and L3?
@@ -3717,6 +3757,10 @@ the pseudo table to retrieve the sum of the prices spent by each customer, then Explain what the Metadata agent is responsible for
+
+What networking entities Neutron supports?
+
+
How do you debug OpenStack networking issues? (tools, logs, ...)
@@ -3730,6 +3774,11 @@ the pseudo table to retrieve the sum of the prices spent by each customer, then Explain BGP dynamic routing
+
+What is the role of network namespaces in OpenStack? +
+ + ## Security