DevBrainOps
110 subscribers
99 photos
5 videos
23 files
226 links
The group whose goal is to find the best approaches and solve problems of #DevOps practice.
Download Telegram
❀1πŸ‘1
Let's get started with Terraform
🧀 a tool provided by HashiCorp for writing, planning
and creating infrastructure as code (IaC) in various cloud services.

πŸ”¬Well, let's start with an excellent course
Which is basically not big and you will need a trial access
to educative.io to complete it. This course is perfect for those
who want to understand the basics of Terraform and start
confidently creating infrastructure in AWS and beyond with a declarative approach.

πŸ₯·πŸ» Terraform: From Beginner to Master with Examples in AWS
https://www.educative.io/courses/terraform-beginner-master-aws?affiliate_id=5073518643380224

#AWS #Terraform #devops
#training #learning
πŸ‘3
πŸ—£ Load balancers improve application performance, availability, and scalability πŸ’ͺ🏼
πŸ”ΉTraffic Distribution:
Load balancers evenly distribute incoming traffic among a pool of servers, ensuring optimal resource utilization and preventing any single server from becoming overwhelmed.
πŸ”ΈHigh Availability:
If a server fails, the load balancer automatically redirects traffic to the remaining healthy servers.
πŸ”ΉSSL Termination:
Load balancers can handle SSL/TLS encryption and decryption, offloading this CPU-intensive task from backend servers.
πŸ”ΈSession Persistence:
For applications that require maintaining user sessions on a specific server, load balancers support session persistence.
πŸ”ΉScalability:
Load balancers facilitate horizontal scaling by allowing easy addition of servers to the pool.
πŸ”ΈHealth Monitoring:
Load balancers continuously monitor server health and performance. They exclude unhealthy servers from the pool, ensuring that only healthy servers handle in requests.
#HighAvailability #Architecture #DevOps
πŸ‘3
πŸ‘¨β€πŸ«Roadmap to master machine learning

#machine_learning #devops #infrastructure #learning
πŸ‘3
▢️ We are starting to learn AWS and I think it is better to start with this course ( Prepare for the AWS Certified Solutions Architect - Associate (SAA-C03) Certification)

➑️ This is a great course for those who want to dive into the world of Amazon Web Services and acquire perhaps the best cloud tools for implementing the best DevOps practices in the future, creating a dynamic infrastructure platform for your projects.

#learning #aws #devops
#infrastructure #training

https://www.linkedin.com/learning/paths/prepare-for-the-aws-certified-solutions-architect-associate-saa-c03-certification
πŸ‘3
Hello everyone βœ‹A very tasty 🍯 video from Victor arrived, a very cool concept of a continuous delivery pipeline with gitops approaches on my favorite today's stack of technology
#crossplane #argocd #aws #github_actions #eks

πŸ’Ž "Automate Everything: How One Manifest Powers Your Entire DevOps Pipeline"

https://youtu.be/IEgXJEkjBZ0
πŸ‘2
πŸ”₯3
πŸ”₯2
πŸ”₯3
What does API gateway do?πŸ•΅πŸΌ

πŸ‘£ (1) The client sends an HTTP request to the API gateway.
πŸ‘£ (2) The API gateway parses and validates the attributes in the HTTP request.
πŸ‘£ (3) The API gateway performs allow-list/deny-list checks.
πŸ‘£ (4) The API gateway talks to an identity provider for authentication and authorization.
πŸ‘£ (5) The rate limiting rules are applied to the request. If it is over the limit, the request is rejected.
πŸ‘£ (6,7) Now that the request has passed basic checks, the API gateway finds the relevant service to route to by path matching.
πŸ‘£ (8) The API gateway transforms the request into the appropriate protocol and sends it to backend microservices.
πŸ‘£ (9-12) The API gateway can handle errors properly, and deals with faults if the error takes a longer time to recover (circuit break). It can also leverage ELK (Elastic-Logstash-Kibana) stack for logging and monitoring. We sometimes cache data in the API gateway.

#api #app #architecture
#SystemDesign #HTTP
πŸ‘3
How its Linux Boot Process works ? πŸ•΅πŸ»β€β™‚οΈ

πŸ”Œ When we turn on the power, BIOS or UEFI firmware is loaded from non-volatile memory, and executes POST (Power On Self Test).
πŸ’½ BIOS/UEFI detects the devices connected to the system, including CPU, RAM, and storage.
πŸ’Ώ Choose a booting device to boot the OS from. This can be the hard drive, the network server, or CD ROM.
πŸ“€ BIOS/UEFI runs the boot loader (GRUB), which provides a menu to choose the OS or the kernel functions.
πŸ–₯ After the kernel is ready, we now switch to the user space. The kernel starts up systemd as the first user-space process, which manages the processes and services, probes all remaining hardware, mounts filesystems, and runs a desktop environment.
πŸ“Ÿ systemd activates the default. target unit by default when the system boots. Other analysis units are executed as well.
🎚The system runs a set of startup scripts and configure the environment.
πŸ“±The users are presented with a login window. The system is now ready.

#linux #boot #systemdesign
πŸ‘3
There are more than 500+ Kubernetes Certified Service Providers and tons of Kubernetes Certified distributions. Choosing a right distribution can be a daunting task. Kubetools is built with a purpose to build a curated list of popular Kubernetes toolsπŸ™ˆ

#kubernetes #devops #infrastructure

https://collabnix.github.io/kubetools
πŸ”₯3
🌱 Typical AWS Network Architecture in one diagram.

🟣Internet Gateway (IGW) serves as the doorway between your AWS VPC and the internet.
🟣Remote Workers AWS offers a Client VPN service that enables remote workers to access securely over the internet.
🟣VGW is the VPN concentrator on the Amazon side of the Site-to-Site VPN connection between your network and your VPC.
🟣VPC Peering allows you to connect two VPCs.
🟣AWS Transit Gateway acts as a network transit hub, enabling you to connect multiple VPCs, VPNs, and AWS accounts together.
🟣VPC Endpoint (Gateway type) allows you to privately connect your VPC to supported AWS services and VPC endpoint services powered by PrivateLink without requiring an internet gateway, VPN.
🟣Interface VPC Endpoint enables private connections between your VPC and supported AWS services.
🟣SaaS AWS Private Link Connection provides private connectivity between VPCs and services hosted on AWS or on-premises.
#aws #infrastructure #network
❀3
What does ACID mean? For SQL πŸ—„
πŸ”Ή Atomicity
The writes in a transaction are executed all at once and cannot be broken into smaller parts. If there are faults when executing the transaction, the writes in the transaction are rolled back.
πŸ”Ή Consistency
Unlike β€œconsistency” in CAP theorem, which means every read receives the most recent write or an error, here consistency means preserving database invariants. Any data written by a transaction must be valid according to all defined rules and maintain the database in a good state.
πŸ”Ή Isolation
When there are concurrent writes from two different transactions, the two transactions are isolated from each other. The most strict isolation is β€œserializability”, where each transaction acts like it is the only transaction running in the database. However, this is hard to implement in reality, so we often adopt loser isolation level.
πŸ”Ή Durability
Data is persisted after a transaction is committed even in a system failure.

#databases #infrastructure #devops #SQL
❀2πŸ‘1πŸ”₯1
This media is not supported in your browser
VIEW IN TELEGRAM
What happens when a junior DevOps specialist is forced into the main branch of the production infrastructure ? πŸ€ͺ

#humor #git #devops
πŸ”₯3
Kubernetes question for devops interview?
#kubernetes #containers #interview
What computing resources can we allocate for pods (containers) in limits?
Final Results
0%
Memory, Cpu, Inodes
22%
Memory, Cpu, Gpu
67%
Memory, Cpu
11%
Memory, Cpu, Inodes, Iops
πŸ‘1
The_Practical_Guide_to_Internal_Developer_Portals_compressed_1.pdf
26.3 MB
πŸ‰ I bring to your attention some very interesting thoughts from the mini-guide from the Port https://www.getport.io/ , in which you will find out.
πŸ‘‰πŸΌ The next big thing in DevOps is platform engineering, and the main tool it uses is the internal developer portal. Read this guide to understand what can be done with portals and why they matter.

#books #guide #devops #platformengineering
πŸ‘1
πŸ’ΎA Linux file system is the method and data structure that Linux uses to control how data is stored and retrieved on a disk. Without a file system, data placed in a storage device would be a large body of data with no way to tell where one piece of data ends and the next begins. The file system is what allows Linux to organize data into files and directories, making it easier to access and manage
πŸ“² Main Directory's Structure:
/root directory (/) is the topmost directory in the Linux file system hierarchy. It serves as the starting point from which all other files and directories branch out. Every file and directory on a Linux system can be accessed by following a path from /
/bin
Essential user binaries
/etc Configuration files
/home User home directories
/var Variable files
/tmp Temporary files.

Linux's flexible file system design allows for multiple types of file systems to coexist and be used according to the needs of the system or storage.

#infrastructure #linux #devops
❀2