kyuubi/docs/quick_start
liuzy04 e232a83a5b
[KYUUBI #2150] [DOCS] Fix Getting Started With Kyuubi on Kubernetes
### _Why are the changes needed?_

helm安装kyuubi服务完成后会提示:
```script
NAME: kyuubi-helm
LAST DEPLOYED: Wed Mar 16 13:14:32 2022
NAMESPACE: kyuubi
STATUS: deployed
REVISION: 1
TEST SUITE: None
NOTES:
#
# Licensed to the Apache Software Foundation (ASF) under one or more
......

Get kyuubi expose URL by running these commands:
  **export NODE_PORT=$(kubectl get --namespace kyuubi -o jsonpath="{.spec.ports[0].nodePort}" services kyuubi-helm-nodeport)**
  export NODE_IP=$(kubectl get nodes --namespace kyuubi -o jsonpath="{.items[0].status.addresses[0].address}")
  echo $NODE_IP:$NODE_PORT
```

使用命令
```
export NODE_PORT=$(kubectl get --namespace kyuubi -o jsonpath="{.spec.ports[0].nodePort}" services kyuubi-helm-nodeport)
```
会得到一个报错:
```
Error from server (NotFound): services "kyuubi-helm-nodeport" not found
```
使用`kubectl get svc -A`,查询到namespace:kyuubi下只有一个service:"kyuubi-svc",运行
```
export NODE_PORT=$(kubectl get --namespace kyuubi -o jsonpath="{.spec.ports[0].nodePort}" services kyuubi-svc)
```
成功。so这里给的serviceName是否是错的?

### _How was this patch tested?_
- [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible

- [ ] Add screenshots for manual tests if appropriate

- [ ] [Run test](https://kyuubi.apache.org/docs/latest/develop_tools/testing.html#running-tests) locally before make a pull request

Closes #2150 from HYBG-1126/HYBG-1126.

Closes #2150

ea152f33 [liuzy04] helm安装kyuubi服务完成后会提示: NAME: kyuubi-helm LAST DEPLOYED: Wed Mar 16 13:14:32 2022 NAMESPACE: kyuubi STATUS: deployed REVISION: 1 TEST SUITE: None NOTES: # # Licensed to the Apache Software Foundation (ASF) under one or more ......

Authored-by: liuzy04 <liuzy04@mail.jj.com>
Signed-off-by: Cheng Pan <chengpan@apache.org>
(cherry picked from commit 95fc6da90f)
Signed-off-by: Cheng Pan <chengpan@apache.org>
2022-03-16 17:59:48 +08:00
..
index.rst [KYUUBI #1255] [KYUUBI#1253] Support use helm to deploy kyuubi server on k8s 2021-10-20 18:16:28 +08:00
quick_start_with_beeline.md [KYUUBI #951] [LICENSE] Add license header on all docs 2021-08-19 09:53:52 +08:00
quick_start_with_datagrip.md [KYUUBI #1462] [DOC] Use relative paths instead of absolute paths 2021-11-30 09:32:34 +08:00
quick_start_with_dbeaver.md [KYUUBI #951] [LICENSE] Add license header on all docs 2021-08-19 09:53:52 +08:00
quick_start_with_helm.md [KYUUBI #2150] [DOCS] Fix Getting Started With Kyuubi on Kubernetes 2022-03-16 17:59:48 +08:00
quick_start_with_hue.md [KYUUBI #951] [LICENSE] Add license header on all docs 2021-08-19 09:53:52 +08:00
quick_start_with_jdbc.md [KYUUBI #1335] Spell issue branch 2021-11-05 09:33:32 +08:00
quick_start_with_jupyter.md [KYUUBI #951] [LICENSE] Add license header on all docs 2021-08-19 09:53:52 +08:00
quick_start.md [KYUUBI #1866][DOCS] Add flink sql engine quick start 2022-03-12 17:07:58 +08:00