Skip to content

Instantly share code, notes, and snippets.

Terraform

Templates

Basic AWS instance

provider "aws" {
  region = "eu-central-1"
}
@sonoroot
sonoroot / kubernetes.md
Last active December 9, 2021 11:17
kubernetes notes

Kubernetes Notes

Busybox Debug

kubectl run busybox --image=busybox:1.28 --rm -it --restart=Never -- sh
kubectl run test --image=alpine:latest --rm -it --restart=Never -- sh