
MarkoNtech
@markontechcom
Followers
2K
Following
2K
Media
260
Statuses
2K
I write guides and step by step tutorials on Linux, DevOps, Virtualization, Kubernetes, home-labs and more. Newsletter: https://t.co/sdQl6VBaxG
Joined February 2017
Home lab update: Latest overhaul - DNS, SSL, VPN, MetalLB and couple of prod ready services. I’ve made some major improvements to my home lab running on k3s Kubernetes, fully managed with FluxCD for seamless GitOps automation. Here’s what’s new:. ✅ Added a dedicated DNS server
1
3
52
Luckily i migrated my project to Proxmox over a year ago. Best decision. These Broadcom "business" decisions are truly baffling to me.
It’s a little early for an April Fools @VMware …right? … right?. This is madness! But then again, none of us can really pretend to know the internal number crunching and strategy that’s being put into place. I just don’t understand how the broader SMB/SME user base can
0
0
2
Blazing-fast image creation – using just your voice. Try Grok Imagine.
314
636
4K
This is quite an impressive project. Run Kubernetes on your old Android smartphone.
blog.denv.it
0
2
27
56. How do you terminate an ongoing process in Linux?.Answer: Use kill PID or pkill process_name, e.g., kill 1234 or pkill firefox. 57. How do you apply command grouping in Linux?.Answer: Use parentheses, e.g., (cmd1; cmd2) runs commands as a group. 58. How do you set up.
1
1
7
26. What is virtual memory in Linux?.Answer: Virtual memory extends physical RAM using disk space (swap), allowing processes to use more memory than physically available by swapping inactive pages to disk. 27. What is a process ID (PID) in Linux?.Answer: A PID is a unique number.
1
2
9
** 88. Linux interview questions with answers: Extensive list **. 1. What is the chmod command in Linux, and how do you use it?.Answer: The chmod command changes file or directory permissions. It uses symbolic (e.g., chmod u+wx file adds write and execute for the user) or numeric.
2
85
273
For those who use Nginx ingress controller in prod. Disable admissionWebHooks and upgrade to the latest version.
wiz.io
Wiz Research uncovered RCE vulnerabilities (CVE-2025-1097, 1098, 24514, 1974) in Ingress NGINX for Kubernetes allowing cluster-wide secret access.
0
8
36
** Step-by-step guide to set up HPA (Horizontal Pod Autoscaler) in Kubernetes **. ** Step 1: Ensure metrics server is installed **.HPA relies on the **metrics server** to collect resource usage data. It should be installed on most of k8s distros but, If it's not installed,.
0
8
70
I understand changes from the business side are necessary to upkeep a product but still this is quite disappointing. This should be an opt-in for users. I've been using firefox since 2004. Hopping i can make it better with betterfox profiles and on a lookout for alternatives.
1
0
1
35. Explain the concept of pod affinity in Kubernetes. Answer: Pod affinity defines rules to co-locate pods on the same node, optimizing performance or resource use for related workloads. 36. What is the purpose of a Taint in Kubernetes?.Answer: A Taint repels pods from a node.
0
1
5
** 61 Kubernetes questions with answers: Extensive list **. A curated list of kubernetes questions with answers, focused on kubernetes architecture and concepts. Most of them are from my interview experiences in the past. 1. What are the key components of Kubernetes?.Answer:.
3
71
333
** Quick Docker compose tip **.Updating image version of the running container. Yes, this is possible with Docker and with almost no-downtime. In your services block, you need to define deploy options(like in the picture bellow). The important part here is the order attribute.
0
7
61
** Kubernetes DaemonSet manifest YAML explained **. A DaemonSet ensures that a specific pod runs on all (or some) nodes in the cluster. ** Key features **. Runs one pod per node: .- Unlike a deployment, DaemonSets schedule one pod per node automatically. - Used for system-wide
1
21
135
** Kubernetes StatefulSet YAML manifest explained **. Used for stateful applications like databases (MySQL, PostgreSQL, Cassandra, etc.). ** Key features **. Pods have stable network IDs:.- Pods are named as my-statefulset-0, my-statefulset-1, etc. - Each pod gets a stable
0
35
244
** Quick Linux tip **. Command to list biggest directories and files within:. du -sh * | sort -hr | head -n 10. What's also great about this command that if you encounter a Linux server with a full drive(regardless please avoid this at all costs) this command will run. The.
3
4
59