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

잔글 (봇: 자동으로 텍스트 교체 (-<source +<syntaxhighlight , -</source> +</syntaxhighlight>))
 
(다른 사용자 한 명의 중간 판 6개는 보이지 않습니다)
2번째 줄: 2번째 줄:
==개요==
==개요==
;kubectl proxy
;kubectl proxy
<source lang='console'>
<syntaxhighlight lang='console'>
master:~$ kubectl proxy &
master:~$ kubectl proxy &
[1] 121575
[1] 121575
master:~$ #Starting to serve on 127.0.0.1:8001
Starting to serve on 127.0.0.1:8001


master:~$ jobs
[1]+  Running                kubectl proxy &
master:~$ sudo netstat -tnlp | grep kubectl
master:~$ sudo netstat -tnlp | grep kubectl
tcp        0      0 127.0.0.1:8001          0.0.0.0:*              LISTEN      121575/kubectl   
tcp        0      0 127.0.0.1:8001          0.0.0.0:*              LISTEN      121575/kubectl   
</source>
</syntaxhighlight>
<source lang='console'>
<syntaxhighlight lang='console'>
$ curl -s 127.0.0.1:8001/api/v1/namespaces
master:~$ curl -s 127.0.0.1:8001/api/v1/namespaces
{
{
   "kind": "NamespaceList",
   "kind": "NamespaceList",
33번째 줄: 35번째 줄:
   ]
   ]
}
}
</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 pods]]
* [[kubectl get deployments]]
* [[kubectl get deployments]]
* [[kubectl describe secret default-token]]
* [[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 }}