Kubernetes

Introduction

CNI & Networking

AWS EKS

Ingress

External DNS

AWS/GCP IAM with Kubernetes

Service Mesh

Helm

Security

Chaos Engineering & Kubernetes

Serverless & Kubernetes

Misc (Tools, CI/CD, ML, CD/CI, Metrics)

Multi-cloud

PREEMPTIBLE & SPOT Instances

RBAC Sample

# Allows scaling deployments or stateful sets up/down
# Generally bound at the namespace level to allow scaling only in that namespace
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
  name: namespace-scale
rules:
  - apiGroups:
      - '' # core group
    resources:
      - deployments/scale
      - statefulsets/scale
    verbs:
      - create
 ---

Last updated