SlideShare a Scribd company logo
Kubernetes-apiserver
2017.06
 목차
 kube-apiserver
 Chapter 1 : deployment
 Chapter 2 : 자원정보 보기
3
 Chapter 1 : deployment
생성
 curl 및 rest ui
4
 Chapter 1 : deployment
삭제
 curl 및 rest ui
Deployment 에서 생성한 pod 를 지울려면 replicasets 를 지워줘
야함
5
 Chapter 2 : 자원정보
보기
 deployment 리스트 보기
6
 Chapter 2 : 자원정보
보기
 pod 리스트 보기
감사합니다 .

More Related Content

PPTX
[자바카페] Amazon Elastic Beanstalk 소개 (2017)
용호 최
 
PDF
모두의 쿠버네티스 (Kubernetes for everyone)
Eunwoo Cho
 
PPT
Kubernetes
진혁 박
 
PPT
Keepalived, haproxy
진혁 박
 
PPT
Git server 구축(git olite,gitweb)
진혁 박
 
PDF
2024 Trend Updates: What Really Works In SEO & Content Marketing
Search Engine Journal
 
PDF
Storytelling For The Web: Integrate Storytelling in your Design Process
Chiara Aliotta
 
PDF
Artificial Intelligence, Data and Competition – SCHREPEL – June 2024 OECD dis...
OECD Directorate for Financial and Enterprise Affairs
 
[자바카페] Amazon Elastic Beanstalk 소개 (2017)
용호 최
 
모두의 쿠버네티스 (Kubernetes for everyone)
Eunwoo Cho
 
Kubernetes
진혁 박
 
Keepalived, haproxy
진혁 박
 
Git server 구축(git olite,gitweb)
진혁 박
 
2024 Trend Updates: What Really Works In SEO & Content Marketing
Search Engine Journal
 
Storytelling For The Web: Integrate Storytelling in your Design Process
Chiara Aliotta
 
Artificial Intelligence, Data and Competition – SCHREPEL – June 2024 OECD dis...
OECD Directorate for Financial and Enterprise Affairs
 
Ad

Kubernetes apiserver

Editor's Notes

  • #4: curl -X POST -H 'Content-Type: application/yaml' --data ' apiVersion: extensions/v1beta1 kind: Deployment metadata: name: kubernetes-rest-server spec: replicas: 1 revisionHistoryLimit: 1 template: metadata: labels: app: kubernetes-rest-server-label spec: containers: - name: restserver-docker image: centos-master:5000/restserver:20170614034753 ports: - containerPort: 80 ' http://192.168.137.136:8080/apis/extensions/v1beta1/namespaces/default/deployments
  • #5: 삭제 : curl -X DELETE -H 'Content-Type: application/yaml' --data ' gracePeriodSeconds: 0 orphanDependents: false ' http://192.168.137.136:8080/apis/extensions/v1beta1/namespaces/default/deployments/kubernetes-rest-server