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

KubernetesとDeclarative Configuration

KubernetesとDeclarative Configuration

CAMPHOR- Day 2019 (https://camphor.connpass.com/event/119434/) での発表資料.

Tomoya Tabuchi

March 09, 2019
Tweet

More Decks by Tomoya Tabuchi

Other Decks in Programming

Transcript

  1. Declarative Configuration どのリソースがどれだけあるかを宣言することで構成を定義する # hello-kube のコンテナを 1 つ動かしたい! # (今日は

    YAML の仕様を理解しなくてよいです) kind: Deployment spec: replicas: 1 # 動かす個数 template: spec: containers: # コンテナの仕様 - image: gcr.io/tomoyat1-artifacts/hello-kube:v0.0.1 name: hello-kube 宣言するだけで構成が勝手にそれに近づく! →どうやって? 4 / 10
  2. external-dns, cert-manager – 具体例 • external-dns2: DNS レコードの管理を行う Add-on •

    cert-manager3: Let’s Encrypt の証明書を自動で作成する Add-on • 時間がかかるので発表前に仕込んでおきました (終わっていてくれ :pray:) 2https://github.com/kubernetes-incubator/external-dns 3https://github.com/jetstack/cert-manager 8 / 10
  3. ご清聴ありがとうございました Further Reading • 公式 • https://kubernetes.io/docs/concepts/overview/what-is-kubernetes/ • https://kubernetes.io/docs/concepts/overview/object-management- kubectl/declarative-config/

    • https://deeeet.com/writing/2018/12/13/how-kubernetes-change-our-way-of- automation/ • https://www.slideshare.net/ToruMakabe/kubernetes-120907020 10 / 10