"Kubectl proxy"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-<source +<syntaxhighlight , -</source> +</syntaxhighlight>))
 
(다른 사용자 한 명의 중간 판 11개는 보이지 않습니다)
1번째 줄: 1번째 줄:
{{소문자}}
==개요==
==개요==
;kubectl proxy
;kubectl proxy
<source lang='console'>
<syntaxhighlight lang='console'>
$ kubectl proxy
master:~$ kubectl proxy &
[1] 121575
Starting to serve on 127.0.0.1:8001
Starting to serve on 127.0.0.1:8001
</source>
 
:→ 계속 실행중
master:~$ jobs
* 다른 세션에서...
[1]+  Running                kubectl proxy &
<source lang='console'>
master:~$ sudo netstat -tnlp | grep kubectl
$ curl http://localhost:8001/version
tcp        0      0 127.0.0.1:8001          0.0.0.0:*              LISTEN      121575/kubectl 
</syntaxhighlight>
<syntaxhighlight lang='console'>
master:~$ curl -s 127.0.0.1:8001/api/v1/namespaces
{
{
   "major": "",
   "kind": "NamespaceList",
   "minor": "",
   "apiVersion": "v1",
   "gitVersion": "v1.9.0",
   "metadata": {
  "gitCommit": "925c127ec6b946659ad0fd596fa959be43f0cc05",
    "selfLink": "/api/v1/namespaces",
  "gitTreeState": "clean",
    "resourceVersion": "12604"
   "buildDate": "2018-01-26T19:04:38Z",
  },
  "goVersion": "go1.9.1",
   "items": [
  "compiler": "gc",
    {
  "platform": "linux/amd64"
      "metadata": {
....
        "finalizers": [
          "kubernetes"
        ]
      },
      "status": {
        "phase": "Active"
      }
    }
  ]
}
}
</source>
</syntaxhighlight>
<syntaxhighlight lang='console'>
master:~$ jobs
[1]+  Running                kubectl proxy &
master:~$ kill %1
master:~$
[1]+  Terminated              kubectl proxy
master:~$ jobs
master:~$
</syntaxhighlight>


==같이 보기==
==같이 보기==
{{z컬럼3|
* [[kubectl 명령어]]
* [[kubectl get pods]]
* [[kubectl get deployments]]
* [[kubectl get deployments]]
* [[kubectl get pods]]
* [[kubectl describe secret default-token]]
* [[kubectl 명령어]]
* [[kubectl proxy 통해 cadvisor 메트릭 조회]]
}}


[[분류: kubectl]]
[[분류: kubectl]]

2024년 9월 26일 (목) 16:43 기준 최신판

1 개요[ | ]

kubectl proxy
master:~$ kubectl proxy &
[1] 121575
Starting to serve on 127.0.0.1:8001

master:~$ jobs
[1]+  Running                 kubectl proxy &
master:~$ sudo netstat -tnlp | grep kubectl
tcp        0      0 127.0.0.1:8001          0.0.0.0:*               LISTEN      121575/kubectl
master:~$ curl -s 127.0.0.1:8001/api/v1/namespaces
{
  "kind": "NamespaceList",
  "apiVersion": "v1",
  "metadata": {
    "selfLink": "/api/v1/namespaces",
    "resourceVersion": "12604"
  },
  "items": [
    {
      "metadata": {
....
        "finalizers": [
          "kubernetes"
        ]
      },
      "status": {
        "phase": "Active"
      }
    }
  ]
}
master:~$ jobs
[1]+  Running                 kubectl proxy &
master:~$ kill %1
master:~$ 
[1]+  Terminated              kubectl proxy
master:~$ jobs
master:~$

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}