Please open Telegram to view this post
VIEW IN TELEGRAM
This media is not supported in your browser
VIEW IN TELEGRAM
1708757232781.gif
285.8 KB
The below illustration shows some common container commands and their syntax 👇
1.
docker run -it --name nginx nginx
2.
docker start nginx
3.
docker restart nginx
4.
docker pause nginx
5.
docker unpause nginx
6.
docker stop nginx
7.
docker kill nginx
8.
docker ps
9.
docker exec -it nginx /bin/bash
10.
docker attach nginx
11.
docker logs nginx
12.
docker rename old-name new-name
13.
docker inspect nginx
14.
docker cp nginx:/container-path/file.txt /local-path
15.
docker rm nginx
These container commands are essential for managing containerized applications, whether for development, testing, or production deployment, as they enable efficient control and manipulation of container instances.
Please open Telegram to view this post
VIEW IN TELEGRAM
Here to Here
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Kubernetes addons are optional components and features that extend the functionality of your Kubernetes cluster beyond its core capabilities. These addons provide additional functionalities such as monitoring, logging, networking, and security, allowing users to tailor their Kubernetes deployments to their specific needs and preferences.
Key Features of Kubernetes Addons:
Please open Telegram to view this post
VIEW IN TELEGRAM
From 'It works on my machine!' to 'It works on my container!' but hey at least it works!
✔️ 𝗙𝗼𝗹𝗹𝗼𝘄 @prodevopsguy 𝗳𝗼𝗿 𝗺𝗼𝗿𝗲 𝘀𝘂𝗰𝗵 𝗰𝗼𝗻𝘁𝗲𝗻𝘁 𝗮𝗿𝗼𝘂𝗻𝗱 𝗰𝗹𝗼𝘂𝗱 & 𝗗𝗲𝘃𝗢𝗽𝘀!!!
Please open Telegram to view this post
VIEW IN TELEGRAM
Are you ready to elevate your development process to new heights?
Please open Telegram to view this post
VIEW IN TELEGRAM
• 0-2 years of experience building and maintaining AWS infrastructure (VPC, EC2, RDS, Security Groups, IAM, ECS, Code Deploy, CloudFront, S3).
• A solid foundation of networking and Linux administration.
• Knowledge of IP networking, VPNs, DNS, load balancing, and firewalls.
• Strong understanding of how to secure AWS environments and meet compliance requirements.
• Knowledge of GitHub, Jenkins, ELK, and deploying applications on AWS.
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
1710853715399.gif
202.9 KB
Once the request is:
Comes the part of kube-controller-manager.
𝗢𝗯𝘀𝗲𝗿𝘃𝗲𝗿-𝗖𝗼𝗺𝗽𝗮𝗿𝗲-𝗔𝗰𝘁𝗶𝗼𝗻 𝗶𝗳 𝗿𝗲𝗾𝘂𝗶𝗿𝗲𝗱) - 𝗥𝗲𝗽𝗲𝗮𝘁 (𝘁𝗶𝗹𝗹 𝗶𝗻𝗳𝗶𝗻𝗶𝘁𝘆).
It's a Daemon polling the API Server at regular intervals to make sure that the 𝗗𝗲𝘀𝗶𝗿𝗲𝗱 𝘀𝘁𝗮𝘁𝗲(.spec) and the 𝗖𝘂𝗿𝗿𝗲𝗻𝘁 𝘀𝘁𝗮𝘁𝗲(.status) are the same.
On a very high level, if the object is found unhealthy it is evicted and replaced by a healthy one. That’s it!!
Please open Telegram to view this post
VIEW IN TELEGRAM
Follow
Please open Telegram to view this post
VIEW IN TELEGRAM
Docker volumes play a crucial role in containerized environments, offering a flexible and efficient way to manage data persistence and sharing.
But what exactly are Docker volumes, why do we need them, and what are the different types available?
A Docker volume is an independent file system entirely managed by Docker and exists as a normal file or directory on the host. They provide a way to store and manage data separately from the container itself, ensuring data persistence even when containers are stopped or removed.
Syntax to create a named volume:
docker run -v {volume_name}:/path/in/container image_nameSyntax to create host-mounted volume:
docker run -v /path/on/host:/path/in/container image_name
Syntax to create an anonymous volume:
docker run -v /path/in/container image_name
Understanding Docker volumes is essential for optimizing containerized workflows, ensuring data integrity, and simplifying data management in modern DevOps environments. Embrace the power of volumes to unlock the full potential of Docker containers!
Please open Telegram to view this post
VIEW IN TELEGRAM
Many enthusiasts whom I interviewed, didn't understand
the difference between DevOps, SRE, and Platform Engineering.
While these disciplines share similarities, there are nuances in their focus:
There's overlap in principles but differences in scope. Many organizations blend these roles for the best results.
Please open Telegram to view this post
VIEW IN TELEGRAM
- All Git/GitHub Content with use cases
- Git Realtime scenarios
- All Git/GitHub Exercises with solutions
- No More Git PDFs needed
- Easy to Learn from anywhere
- Detailed Explanation guide
- All Git/GitHub Branching Strategies for DevOps guy
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
1710991773476.gif
633.1 KB
Are you embarking on a DevOps journey or looking to sharpen your skills? Here’s your 2024 roadmap to becoming a DevOps expert. Let’s break it down into bite-sized steps:
Please open Telegram to view this post
VIEW IN TELEGRAM
Today we look into the Kubernetes system from a bird's eye view.
𝟭: It is a container orchestrator that performs the scheduling, running and recovery of your containerised applications in a horizontally scalable and self-healing way.
𝟮: Control plane - this is where K8s system processes that are responsible for scheduling workloads defined by you and keeping the system healthy live.
𝟯: Worker nodes - this is where containers are scheduled and run.
𝟰: You can have thousands of Nodes (usually you only need tens of them) in your K8s cluster, each of them can host multiple containers. Nodes can be added or removed from the cluster as needed. This enables unrivaled horizontal scalability.
𝟱: Kubernetes provides an easy to use and understand declarative interface to deploy applications. Your application deployment definition can be described in yaml, submitted to the cluster and the system will take care that the desired state of the application is always up to date.
𝟲: Users are empowered to create and own their application architecture in boundaries pre-defined by Cluster Administrators.
Please open Telegram to view this post
VIEW IN TELEGRAM
Are endless manual deployments and sluggish release cycles holding your team back? You're not alone! But fear not, there's a solution that can turn your development process into a well-oiled machine: CI/CD (Continuous Integration/Continuous Delivery).
The benefits are out of this world:
Please open Telegram to view this post
VIEW IN TELEGRAM