Ultra Max Pro Padawan of GNU/Linux
I build systems
M Alvee
L
I
N
U
X
My abstractions end where syscalls begin. Namespaces can't define my boundaries. Kernel is scared of my userspace madness..
MA
// main.go
        ch := make(chan string)
        go func() { ch <- "done" }()
        fmt.Println(<-ch)# deployment.yaml
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: go-service
    spec:
      replicas: 2
      template:
        spec:
          containers:
            - name: app
              image: malvee/go-service:latest