*test라는 이름으로 Kubernetes Namespace 생성 및 리소스 사용 :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | [root@host01-4 hk]# k create ns test namespace "test" created [root@host01-4 hk]# k get ns NAME STATUS AGE default Active 6h kube-public Active 6h kube-system Active 6h test Active 4s [root@host01-4 hk]# ls -l total 974676 -rw-------. 1 root root 50727424 May 25 10:21 dns-kube-dns -rw-------. 1 root root 42481152 May 25 10:21 dns-sidecar -rw-r--r--. 1 root root 158 May 25 16:18 endpoint.yaml -rw-------. 1 root root 193461760 May 25 10:21 etcd-amd64 -rw-r--r--. 1 root root 362 May 25 12:17 hk.yaml -rw-------. 1 root root 41239040 May 25 10:21 k8s-dns -rw-r--r--. 1 root root 343 May 25 10:21 kubeadm.host08-1.root.log.INFO.20180525-060140.2620 -rw-r--r--. 1 root root 343 May 25 10:21 kubeadm.INFO -rw-------. 1 root root 225319936 May 25 10:21 kube-apiserver -rw-------. 1 root root 148110336 May 25 10:21 kube-controller -rw-------. 1 root root 98924032 May 25 10:21 kube-proxy -rw-------. 1 root root 50635776 May 25 10:21 kube-scheduler -rw-r--r--. 1 root root 715 May 25 13:45 multi.yaml -rw-r--r--. 1 root root 185 May 25 16:48 nodePort.yaml -rw-r--r--. 1 root root 162 May 25 17:03 probe.yaml -rw-r--r--. 1 root root 410 May 25 17:06 rc-probe.yaml -rw-r--r--. 1 root root 302 May 25 15:51 rc.yaml -rw-r--r--. 1 root root 0 May 25 15:53 service.yalm -rw-r--r--. 1 root root 162 May 25 15:55 service.yaml -rw-r--r--. 1 root root 322 May 25 14:11 temp.yaml -rw-r--r--. 1 root root 2336 May 25 12:06 temp.yarm -rw-r--r--. 1 root root 88 May 25 16:13 test-svc-h1.yaml -rw-------. 1 root root 99517952 May 25 10:21 weave-kube -rw-------. 1 root root 47575552 May 25 10:21 weave-npc [root@host01-4 hk]# k create -f rc.yaml -n test replicationcontroller "simple-rc" created [root@host01-4 hk]# k get rc -n test NAME DESIRED CURRENT READY AGE simple-rc 3 3 3 9s [root@host01-4 hk]# [root@host01-4 hk]# k describe ns test | cs |
'Docker(도커) Kubernetes' 카테고리의 다른 글
Docker Kubernetes, Readiness Probe 생성 방법 (0) | 2018.05.25 |
---|---|
Pod 개념, 멀티 컨테이너 생성, kubectl 명령어 사용법 (0) | 2018.05.25 |
Kubernetes 설치 및 사용법, Yaml으로 pod 및 rc 생성 (0) | 2018.05.25 |
도커 관련 설정 파일 모음 (2) | 2018.05.24 |
docker swarm 사용법 (0) | 2018.05.24 |