Skip to content

§ shivamsancc · Senior DevOps Engineer · Available

Engineering
Resilient
Infra.

I design and operate production infrastructure for companies that can't afford downtime — bare-metal, cloud, and everything in between.

shivam@prod-01 — bash
kubectl get nodes -o wide
NAME STATUS ROLES AGE VERSION
node-01 Ready master 42d v1.28.4
node-02 Ready worker 42d v1.28.4
node-03 Ready worker 42d v1.28.4

terraform apply -auto-approve
✓ proxmox_vm.web-01: Creation complete
✓ dns_record.api: Creation complete
Apply complete! 12 added, 0 changed, 0 destroyed.

uptime
up 847 days, 16:42, load avg: 0.08, 0.12, 0.10

§ What I do

Infrastructure that survives the night shift.

From on-premises hypervisors to multi-cloud deployments — I design, build, and operate systems with obsessive attention to reliability, cost, and observability.

DevOpsCloud ArchSRENetworkingVoIP

CPU cores migrated

3,000+

VMware → Proxmox. Zero downtime.

Production uptime SLA

99.9%

Network backbone

6.4T

BPS at NIXI peering exchange

§ Currently

Available for consulting

Senior DevOps Engineer at PinnacleWorks. Open to new infrastructure and cloud projects.

Get in touch →

§ Expertise areas · 7 domains

Cloud · DevOps · Networking · Containers · Observability · Storage · VoIP/Telecom

Full profile →

§ Featured work

VMware → Proxmox Migration
01

01 / 02 · Case Study

VMware → Proxmox Migration

3,000 CPU cores. Zero downtime.

Complete live migration of a production VMware cluster to Proxmox VE using a custom Go orchestrator. Achieved 60% cost reduction with no service interruption across 200+ virtual machines.

60%Cost Saved
3KCPU Cores
0 minDowntime
200+VMs
Proxmox VEVMwareGoCephZFS
View case study →
VPS Orchestration Platform
02

02 / 02 · Case Study

VPS Orchestration Platform

500+ virtual machines. One dashboard.

Self-service cloud platform built from scratch — Go backend, Proxmox API, customer portal, automated billing, and provisioning pipeline. Serves 100+ enterprise clients with 99.9% uptime SLA.

500+Active VMs
99.9%Uptime
Faster Deploy
100+Clients
GoLaravelProxmox APIPostgreSQLRedis
View case study →

§ How I think

Infrastructure
as code.

Every system I build is declarative, version-controlled, and reproducible. Terraform for cloud, Ansible for config, ArgoCD for delivery.

TerraformAnsibleArgoCDHelmGitHub Actions
terraform · main.tfHCL
resource "proxmox_vm_qemu" "web_server" {
name = "web-01"
target_node = "pve-01"
cores = 4
memory = 8192
clone = "ubuntu-22-template"

network {
model = "virtio"
bridge = "vmbr0"
}
}

# Apply: terraform apply -auto-approve