clovistb Profile Banner
clovis Profile
clovis

@clovistb

Followers
1K
Following
5K
Media
116
Statuses
2K

Chasing Kubernetes wisdom • DevOps Engineer • laC addict • Building platforms

Houston, TX
Joined March 2011
Don't wanna be here? Send us removal request.
@clovistb
clovis
18 hours
I have two EC2 instances. EC2-A → client EC2-B (10.0.2.15)→ server running an app on port 8080 From EC2-A: curl http://10.0.2.15:8080 → works ✅ ping 10.0.2.15 → fails ❌ Security group is open for TCP 8080. Why does ping fail while curl
28
15
197
@clovistb
clovis
1 hour
Who else, like me, hasn’t created a Claude account yet?
2
0
6
@clovistb
clovis
7 hours
Tip about Amazon CloudFront and AWS Global Accelerator - Use CloudFront when the main problem is distance between users and your content. CloudFront caches files (images, HTML, API responses, videos) at edge locations around the world so users receive them from the closest
@clovistb
clovis
10 hours
CloudFront vs Global Accelerator (basic explanation)   You deploy a resource (EC2, S3, ALB, etc.) in us-east-1 and you want to serve users in Europe.   Instead of letting European users connect directly to us-east-1 over the internet, AWS provides two solutions.   1.  CloudFront
0
2
23
@clovistb
clovis
10 hours
CloudFront vs Global Accelerator (basic explanation)   You deploy a resource (EC2, S3, ALB, etc.) in us-east-1 and you want to serve users in Europe.   Instead of letting European users connect directly to us-east-1 over the internet, AWS provides two solutions.   1.  CloudFront
4
8
49
@clovistb
clovis
13 hours
If you’re still wondering about TCP vs ICMP, read the post below and the comments. The community already explained everything.
@clovistb
clovis
18 hours
I have two EC2 instances. EC2-A → client EC2-B (10.0.2.15)→ server running an app on port 8080 From EC2-A: curl http://10.0.2.15:8080 → works ✅ ping 10.0.2.15 → fails ❌ Security group is open for TCP 8080. Why does ping fail while curl
1
2
19
@clovistb
clovis
1 day
DevOps is easy. You just need to master a few tools 😄 Git npm Jira Snyk Chef Helm Asana Trivy Falco Maven Nomad Slack Zabbix Docker Kibana Trello GitHub GitLab Puppet Pulumi Nagios Splunk Jaeger Harbor Tekton Podman Bamboo Argo CD Flux CD Ansible Rancher Jenkins Grafana
29
49
257
@clovistb
clovis
2 days
Imagine 100 users open a website at the same time and ask a simple question in their browser: “How many months are in a year?” The system takes 250 milliseconds to reply “12 months.” Out of the 100 users, 98 receive the correct answer, while 2 users do not receive a response.
4
4
19
@clovistb
clovis
1 day
7 Steps to Reduce Latency in Any Web System.   Reducing latency in a system means reducing the time between when a user sends a request and when the system returns a response   1️⃣Reduce network distance ◦Deploy services closer to users (multi-region architecture) ◦Use a CDN to
0
4
26
@clovistb
clovis
2 days
If you’re still struggling to understand the four pillars of monitoring - latency - traffic - errors - saturation, The example below may help👇
@clovistb
clovis
2 days
Imagine 100 users open a website at the same time and ask a simple question in their browser: “How many months are in a year?” The system takes 250 milliseconds to reply “12 months.” Out of the 100 users, 98 receive the correct answer, while 2 users do not receive a response.
1
2
13
@clovistb
clovis
2 days
My opinion I would proceed by elimination. ❌Cloud Engineer: Strong in infrastructure, but not always polyvalent.A DevOps or Platform Engineer can cover cloud tasks. ❌SRE: Excellent in reliability, monitoring, and incident response. But may not replace a Cloud Engineer or
@clovistb
clovis
3 days
You have to deploy an application end-to-end: infrastructure, networking, deployment, monitoring, and troubleshooting. But you can choose only one engineer. Who do you pick? 1 - Cloud Engineer 2 - DevOps Engineer 3 - SRE 4 - Platform Engineer #DevOps #cloud #SRE
5
1
25
@clovistb
clovis
2 days
Imagine 100 users open a website at the same time and ask a simple question in their browser: “How many months are in a year?” The system takes 250 milliseconds to reply “12 months.” Out of the 100 users, 98 receive the correct answer, while 2 users do not receive a response.
4
4
19
@clovistb
clovis
2 days
I fixed incidents and then turned them into LLM tasks to evaluate how well AI agents can fix the same issues.
@__karnati
Sri
2 days
What is the one thing that you did with AI that you are proud of? I was literally asked this in an Interview.
0
1
6
@clovistb
clovis
3 days
You have to deploy an application end-to-end: infrastructure, networking, deployment, monitoring, and troubleshooting. But you can choose only one engineer. Who do you pick? 1 - Cloud Engineer 2 - DevOps Engineer 3 - SRE 4 - Platform Engineer #DevOps #cloud #SRE
18
3
35
@clovistb
clovis
2 days
Your system is down and you’re looking for a temporary fix. First question: Did we deploy or change anything recently? If the answer is no, don’t think about rollback. Rollback is only useful when the outage is caused by a recent change. It should not be your first option.
8
2
26
@clovistb
clovis
2 days
The difference between a junior and an experienced engineer. The experienced engineer performs well in the first few months, then starts believing he already knows everything. The junior engineer costs you the first few months, but keeps pushing because he feels he still has
3
1
22
@clovistb
clovis
3 days
You have to deploy an application end-to-end: infrastructure, networking, deployment, monitoring, and troubleshooting. But you can choose only one engineer. Who do you pick? 1 - Cloud Engineer 2 - DevOps Engineer 3 - SRE 4 - Platform Engineer #DevOps #cloud #SRE
18
3
35
@clovistb
clovis
3 days
Never underestimate a post you create. It can go farther than you ever imagine. Even if there are no royalties on posts, the idea is still yours. The work is still yours.
@fromcodetocloud
FromCodeToCloud
3 days
My post got copied on LinkedIn. Looks like my content finally got its promotion to the corporate recycling center. 😄
1
0
7
@clovistb
clovis
3 days
Production rule If your system is down, check in this order: 1 - ALB 2 - ECS Tasks 3 - Database Because failures usually top → bottom.
1
1
7
@clovistb
clovis
3 days
When running an ECS + Fargate architecture, monitoring should happen at three levels. 1 - ALB (Application Load Balancer) This is the entry point of your system. Monitor: - Request Count → traffic level - Target Response Time → latency - HTTP 5xx errors →
3
6
39
@clovistb
clovis
3 days
What is the difference between horizontal and vertical scaling? If you want to stay above the average candidate, don’t repeat the textbook answer. Interviewers are testing if you think at the system level, not just the resource level. Think scaling at: - Server level -
2
0
18