Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Kubernete Second Week

Kubernete Second Week

Some intermediate Kubernetes primitives and concepts as part of a workshop.

Mofizur Rahman

July 24, 2019
Tweet

More Decks by Mofizur Rahman

Other Decks in Programming

Transcript

  1. Mofizur Rahman Senior Developer Advocate, Vonage Work on Client SDKs,

    Collect Stickers, Write Go and JS code @moficodes
  2. @moficodes Example apiVersion: v1 kind: Pod metadata: name: high-priority spec:

    containers: - name: high-priority image: ubuntu resources: requests: memory: "2Gi" cpu: "100m" limits: memory: "10Gi" cpu: "500m" priorityClassName: high
  3. @moficodes Descheduler Kubernetes can actually kick things out if needed

    Except- Critical Pods (marked with annotations) Orphan Pods Daemonsets Pod with Storage
  4. Mofizur Rahman Senior Developer Advocate, Vonage Work on Client SDKs,

    Collect Stickers, Write Go and JS code @moficodes