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

はてなインターンシップ2024 コンテナオーケストレーション講義資料

Hatena
October 31, 2024
30

はてなインターンシップ2024 コンテナオーケストレーション講義資料

Hatena

October 31, 2024
Tweet

More Decks by Hatena

Transcript

  1. Service ϩʔυόϥϯα Pod ( ) 1 pod 2 pod pod

    IP ClusterIP ( ) NodePort ( ) LoadBalancer( ) etc IBUFOBJOUFSO 
  2. Manifestͷαϯϓϧ(Deployment) apiVersion: apps/v1 kind: Deployment metadata: name: nginx-deployment labels: app:

    nginx spec: replicas: 3 selector: matchLabels: app: nginx template: metadata: labels: app: nginx spec: containers: - name: nginx image: nginx:1.14.2 ports: - containerPort: 80 IBUFOBJOUFSO 
  3. Manifestͷαϯϓϧ(Service) apiVersion: v1 kind: Service metadata: name: nginx-service spec: selector:

    app: nginx ports: - protocol: TCP port: 80 targetPort: 80 IBUFOBJOUFSO 
  4. Ϧιʔε੍ݶ Pod CPU Pod spec: containers: - name: nginx image:

    nginx:1.14.2 ports: - containerPort: 80 resources: requests: memory: "64Mi" cpu: "250m" limits: memory: "128Mi" cpu: "500m" IBUFOBJOUFSO 