DevOps(Document Repository) – Telegram
DevOps(Document Repository)
10.4K subscribers
55 photos
689 files
736 links
🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀
The first Devops documentary community on Telegram🚀
🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀

🟡 لینک گروه جهت تبادل:
https://news.1rj.ru/str/DevopsDocGP
Download Telegram
terraform-cheat-sheet.pdf
97.6 KB
#Terraform

Terraform cheat sheet

Group:
©️ https://news.1rj.ru/str/DevopsDocGP
Channel:
©️ https://news.1rj.ru/str/DevopsDoc
Please open Telegram to view this post
VIEW IN TELEGRAM
👌43🐳2
DevOps_1743273119.pdf
4 MB
Devops T-Shooting

Group:
©️ https://news.1rj.ru/str/DevopsDocGP
Channel:
©️ https://news.1rj.ru/str/DevopsDoc
Please open Telegram to view this post
VIEW IN TELEGRAM
👏4🐳31
helm-cheat-sheet.pdf
63.8 KB
#Helm

Helm cheat sheet

Group:
©️ https://news.1rj.ru/str/DevopsDocGP
Channel:
©️ https://news.1rj.ru/str/DevopsDoc
Please open Telegram to view this post
VIEW IN TELEGRAM
4🙏3👍2
aws-cheat-sheet.pdf
184.6 KB
#AWS

AWS cheat sheet

Group:
©️ https://news.1rj.ru/str/DevopsDocGP
Channel:
©️ https://news.1rj.ru/str/DevopsDoc
Please open Telegram to view this post
VIEW IN TELEGRAM
6👍2
⚙️ #SystemDesign 📈📊📊

🤔How Do Companies Ship Code to Production?

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.


©️ From : ByteByteGo


Group:
©️ https://news.1rj.ru/str/DevopsDocGP
Channel:
©️ https://news.1rj.ru/str/DevopsDoc
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://news.1rj.ru/str/DevopsDocGP
Channel:
©️ https://news.1rj.ru/str/DevopsDoc
Please open Telegram to view this post
VIEW IN TELEGRAM
4👍3🙏1
👍32
linux-cheat-sheet.pdf
75 KB
#Linux

Linux cheat sheet

Group:
©️ https://news.1rj.ru/str/DevopsDocGP
Channel:
©️ https://news.1rj.ru/str/DevopsDoc
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://news.1rj.ru/str/DevopsDocGP
Channel:
©️ https://news.1rj.ru/str/DevopsDoc
Please open Telegram to view this post
VIEW IN TELEGRAM
5👍2
⚙️ #SystemDesign 📈📊📊

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.

🔴Web browsers do the heavy lifting: short polling or long polling. With short polling, the browser will retry until it gets the latest data. With long polling, the HTTP server doesn't return results until new data has arrived.
🔴HTTP server and web browser cooperate: WebSocket or SSE (server-sent event). In both cases, the HTTP server could directly send the latest data to the browser after the connection is established. The difference is that SSE is uni-directional, so the browser cannot send a new request to the server, while WebSocket is fully-duplex, so the browser can keep sending new requests.

➡️Over to you: of the four solutions (long polling, short polling, SSE, WebSocket), which ones are commonly used, and for what use cases?


©️ From : ByteByteGo


Group:
©️ https://news.1rj.ru/str/DevopsDocGP
Channel:
©️ https://news.1rj.ru/str/DevopsDoc
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
Please open Telegram to view this post
VIEW IN TELEGRAM
👌4👍32
3👍2
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