aws-cheat-sheet.pdf
184.6 KB
#AWS
AWS cheat sheet
โ โ โ โ โ โ โ โ โ โ โ โ
Group:
ยฉ๏ธ https://t.me/DevopsDocGP
Channel:
ยฉ๏ธ https://t.me/DevopsDoc
AWS cheat sheet
Group:
Channel:
Please open Telegram to view this post
VIEW IN TELEGRAM
โค6๐2
Here are 11 steps from planning to production:
๏ปฟ๏ปฟ๏ปฟ๏ปฟ1) The Product Owner starts the entire process by creating user stories in a tool like Jira.
๏ปฟ๏ปฟ๏ปฟ๏ปฟ2) The Developer Team performs Sprint Planning activity and adds the user stories to the sprint.
๏ปฟ๏ปฟ๏ปฟ๏ปฟ3) Developers work on the assigned stories. Once a story is finished, they commit the code to Git and push it to GitHub.
๏ปฟ๏ปฟ๏ปฟ๏ปฟ4) Jenkins builds and runs the code through testing and quality check tools such as JUnit, Jacoco, and SonarQube.
๏ปฟ๏ปฟ๏ปฟ๏ปฟ5) If the build is successful, it is stored in the artifactory such as JFrog. Jenkins also deploys the build to the Dev Environment via Docker.
๏ปฟ๏ปฟ๏ปฟ๏ปฟ6) Next up, the feature gets deployed to the QA environment.
Since multiple teams may be working on the same code base, multiple QA environments will be created.
๏ปฟ๏ปฟ๏ปฟ๏ปฟ7) The QA team uses a particular QA environment and runs multiple test types such as QA, regression, and performance.
๏ปฟ๏ปฟ๏ปฟ๏ปฟ8) Once the QA verification is complete, features are deployed to the UAT (User Acceptance Testing) environment.
๏ปฟ๏ปฟ๏ปฟ๏ปฟ9) UAT testing verifies whether the feature satisfies the user's requirements.
๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ10) Once the UAT testing is successful, the builds become release candidates. They are deployed to the production environment based on a specific schedule.
๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ11) The SRE team uses tools like ELK and Prometheus to monitor the production environment and handle alerts in case of issues.
Group:
Channel:
Please open Telegram to view this post
VIEW IN TELEGRAM
โค5๐2๐2
docker-cheat-sheet.pdf
97.4 KB
#Docker
Docker cheat sheet
โ โ โ โ โ โ โ โ โ โ โ โ
Group:
ยฉ๏ธ https://t.me/DevopsDocGP
Channel:
ยฉ๏ธ https://t.me/DevopsDoc
Docker cheat sheet
Group:
Channel:
Please open Telegram to view this post
VIEW IN TELEGRAM
โค4๐3๐1
You are troubleshooting a Docker container that is failing to start. What could be a possible reason for this issue?
Anonymous Quiz
33%
Incorrect port mapping in the container configuration
25%
Insufficient memory allocated to the container
32%
Missing dependencies in the container image
10%
Network connectivity issues within the container
๐3โค2
linux-cheat-sheet.pdf
75 KB
#Linux
Linux cheat sheet
โ โ โ โ โ โ โ โ โ โ โ โ
Group:
ยฉ๏ธ https://t.me/DevopsDocGP
Channel:
ยฉ๏ธ https://t.me/DevopsDoc
Linux cheat sheet
Group:
Channel:
Please open Telegram to view this post
VIEW IN TELEGRAM
โค7
Which command would you use to display events related to a specific pod?
Anonymous Quiz
37%
oc logs pod <pod-name> --events
35%
oc describe pod <pod-name>
19%
oc get events <pod-name>
9%
oc show events pod <pod-name>
โค3๐3๐1
kubernetes-cheat-sheet.pdf
130 KB
#Kubernetes
Kubernetes cheat sheet
โ โ โ โ โ โ โ โ โ โ โ โ
Group:
ยฉ๏ธ https://t.me/DevopsDocGP
Channel:
ยฉ๏ธ https://t.me/DevopsDoc
Kubernetes cheat sheet
Group:
Channel:
Please open Telegram to view this post
VIEW IN TELEGRAM
โค5๐2
How to define a service without a selector?
Anonymous Quiz
32%
Specify the external name
23%
Specify an endpoint with IP
23%
Address and port Just by specifying the IP address
21%
Specifying the label and api-version
โค3๐1
An HTTP server cannot automatically initiate a connection to a browser. As a result, the web browser is the initiator. What should we do next to get real-time updates from the HTTP server?
Both the web browser and the HTTP server could be responsible for this task.
๏ปฟ๏ปฟ
๏ปฟ๏ปฟ
Group:
Channel:
Please open Telegram to view this post
VIEW IN TELEGRAM
โค7๐2๐1
How to save a new docker image with container id mentioned in the command on the local system.
Anonymous Quiz
46%
$ docker save 109ca6efc quizapi/httpd_image
24%
$ docker --save 109ca6efc quizapi/httpd_image
30%
$ docker commit 109ca6efc quizapi/httpd_image
โค3
Which resource in OpenShift defines the location of a Docker image to be deployed without rebuilding the image?
Anonymous Quiz
37%
ImageStream
25%
BuildConfig
16%
ImagePolicy
21%
ContainerTemplate
โค2๐2
AWS_Devops_Interview_Questions_and_Answers_scenario_based_1743649131.pdf
771.8 KB
#AWS
#QA
AWS question & answer
โ โ โ โ โ โ โ โ โ โ โ โ
Group:
ยฉ๏ธ https://t.me/DevopsDocGP
Channel:
ยฉ๏ธ https://t.me/DevopsDoc
#QA
AWS question & answer
Group:
Channel:
Please open Telegram to view this post
VIEW IN TELEGRAM
๐4๐3โค2
Which command is used to compress files into a tar.gz archive in Ubuntu?
Anonymous Quiz
91%
Use 'tar -czvf archive_name.tar.gz /path/to/files'
5%
Run 'compress-files tar'
4%
Type 'gzip-folder'
1%
Use 'archive-files create'
โค3๐2
Which command is used to configure a system as an NFS server in Ubuntu?
Anonymous Quiz
74%
Install 'nfs-kernel-server' and edit '/etc/exports' to configure shared directories
11%
Run 'nfs-setup'
4%
Type 'share-folder nfs'
11%
Use 'nfs-server-config'
โค3๐2๐1
How to delete a pod in Kubernetes using the type and name specified in pod.json?
Anonymous Quiz
23%
kubectl delete ./pod.json
60%
kubectl delete -f ./pod.json
14%
kubectl remove -f ./pod.json
3%
kubectl remove ./pod.json
โค4
Which command is used to check for bad sectors on a disk in Ubuntu?
Anonymous Quiz
75%
Use 'sudo badblocks -v /dev/sdX'
12%
Run 'disk-check-bad'
6%
Type 'check-bad-sectors'
8%
Use 'scan-disk for errors'
โค5
At its core, Kubernetes is a platform for:
Anonymous Quiz
15%
Provisioning machines (similar to Puppet, Ansible)
81%
Running and scheduling container applications on a cluster
5%
Packaging software in containers
โค4๐1
nmap-cheat-sheet.pdf
91.5 KB
#Tools
Nmap cheat sheet
โ โ โ โ โ โ โ โ โ โ โ โ
Group:
ยฉ๏ธ https://t.me/DevopsDocGP
Channel:
ยฉ๏ธ https://t.me/DevopsDoc
Nmap cheat sheet
Group:
Channel:
Please open Telegram to view this post
VIEW IN TELEGRAM
๐6
http-cheat-sheet.pdf
70.3 KB
HTTP cheat sheet
โ โ โ โ โ โ โ โ โ โ โ โ
Group:
ยฉ๏ธ https://t.me/DevopsDocGP
Channel:
ยฉ๏ธ https://t.me/DevopsDoc
Group:
Channel:
Please open Telegram to view this post
VIEW IN TELEGRAM
๐6
Which command is used to recover deleted files from an ext4 file system in Ubuntu?
Anonymous Quiz
73%
Use 'extundelete /dev/sdX --restore-all'
10%
Run 'recover-files ext4'
5%
Type 'undelete sdX'
13%
Use 'restore-data ext4'
trivy-cheat-sheet.pdf
79.9 KB
#Trivy
Trivy cheat sheet
โ โ โ โ โ โ โ โ โ โ โ โ
Group:
ยฉ๏ธ https://t.me/DevopsDocGP
Channel:
ยฉ๏ธ https://t.me/DevopsDoc
Trivy cheat sheet
Group:
Channel:
Please open Telegram to view this post
VIEW IN TELEGRAM
โค6