FromCodeToCloud

10.7K posts

FromCodeToCloud banner
FromCodeToCloud

FromCodeToCloud

@fromcodetocloud

Devops Engineer | Devops | Automation | AI ML | Sharing Tips & Resources. 📩DM for Paid Collab https://t.co/IgcJ0o6Rmu

Katılım Kasım 2024
1.3K Takip Edilen11.8K Takipçiler
Sabitlenmiş Tweet
Nayan
Nayan@NayanUnfiltered·
@fromcodetocloud Focus on one. Complete one. OR Time bound the different tasks. Focus on each as per the time frame allotted.
English
1
0
1
9
FromCodeToCloud
FromCodeToCloud@fromcodetocloud·
Do you focus on one task or multitask?
English
0
1
12
1.2K
FromCodeToCloud
FromCodeToCloud@fromcodetocloud·
Devops Engineers after implementing Auto deployment
English
8
48
553
18.6K
Jaydeep
Jaydeep@_jaydeepkarale·
This is one of the biggest problem with thr current setup People upskill and the the educator/influencer community who earn from selling videos tells the world that its already dead In theory 70% of the industry probably hasnt even adopted it yet. The solution: Disconnect from social media as a learning guidanxe
MANTU KUMAR@Mantu_kumar91

Skill sikhte hi dead ho jaata hai 😑

English
28
15
286
17.9K
NoodleBrain
NoodleBrain@CommandQing·
@fromcodetocloud and then prod deploys at 11pm on a Friday because the pipeline doesn't understand work-life balance
English
1
0
1
313
FromCodeToCloud
FromCodeToCloud@fromcodetocloud·
This tutorial covers complete Kubernetes concepts. I have been following it for a while to learn the concepts I am not good at.
FromCodeToCloud tweet media
English
2
20
151
6.6K
Jaydeep
Jaydeep@_jaydeepkarale·
@fromcodetocloud I learnt from this as well, I think I csn improve on this content, need to find time to record
English
1
0
0
334
Jaydeep
Jaydeep@_jaydeepkarale·
Two engineers wrote these queries: SELECT DISTINCT country FROM users; vs SELECT country FROM users GROUP BY country; Both return the same result. So why do both exist?
English
11
1
59
13.8K
FromCodeToCloud
FromCodeToCloud@fromcodetocloud·
A StatefulSet in Kubernetes is used to manage stateful applications where each pod needs a fixed identity and storage. Key idea (simple) : Unlike Deployments (which treat pods as identical), StatefulSet gives each pod: - Stable name → app-0, app-1, app-2 - Persistent storage → each pod keeps its own data - Ordered start/stop → pods start and terminate in sequence Use StatefulSet when your app: - Needs data persistence (databases) - Needs unique identity per pod - Needs ordered scaling Examples Include: - MySQL cluster - MongoDB - Kafka - Redis (cluster mode)
FromCodeToCloud tweet media
English
2
17
103
3.7K
FromCodeToCloud
FromCodeToCloud@fromcodetocloud·
@devops_nk i dont call back anyone. if they need it they will definitely comeback. they will interview other candidates and compare each of them and take decision
English
1
0
1
150
Nandkishor
Nandkishor@devops_nk·
Interview scheduled day: HR called 4 times to confirm my availability. Interview went well. This week I tried calling HR 4-5 times for feedback no answer. Welcome to hiring in 2026, where there's only one-way conversation. 💔
English
6
0
39
1.5K
Saurav Chaudhary
Saurav Chaudhary@sauravstwt·
DevOps interviews have changed. You’re no longer asked: “What is Kubernetes?” You’re asked: “A streaming platform serving 50M users suddenly starts buffering. Where do you start debugging?” If your answer is “check logs”… you’re not thinking deep enough. Real engineers think in layers: • Version changes • Environment scope • Resource pressure • Dependencies • Infrastructure health • Connectivity paths • Telemetry signals This framework is called VERDICT-7. Comment “BOOK” to get the DevOps interview blueprint.
English
211
23
303
27.9K
FromCodeToCloud retweetledi
FromCodeToCloud
FromCodeToCloud@fromcodetocloud·
If I were starting Kubernetes today, I’d learn this flow first. This is the actual path your application follows before it runs in a cluster. 1. Build the application Example: Java, Node.js, Python. 2. Containerize it with Docker docker build -t myapp:v1 . 3. Push the image to Docker Hub so Kubernetes can pull it docker push myapp:v1 4. Create Kubernetes manifests Usually you define: Deployment → manages pods Service → exposes the application 5. Deploy to the cluster kubectl apply -f deployment.yaml kubectl apply -f service.yaml Behind the scenes Kubernetes does this: Deployment → ReplicaSet → Pods → Containers start 6. Expose the application Using: - NodePort - LoadBalancer • Ingress Now the application becomes accessible. Understanding this flow makes Kubernetes much easier to reason about.
FromCodeToCloud tweet media
English
6
33
209
6.8K
FromCodeToCloud retweetledi
FromCodeToCloud
FromCodeToCloud@fromcodetocloud·
I Guess 70-80% of devops engineers haven't started their career as devops. They have actually switched from Support, Admin , Dev, QA etc roles Agree?
English
17
2
63
5.2K