peacewong commented on code in PR #568:
URL: 
https://github.com/apache/incubator-linkis-website/pull/568#discussion_r1016668031


##########
docs/quick/deploy-to-kubernetes.md:
##########
@@ -0,0 +1,111 @@
+---
+title: Kubernetes Deployment
+sidebar_position: 1.4
+---
+
+This article describes how to deploy a Linkis service in a Kind Kubernetes 
environment for easier learning and debugging.
+
+## 1. Dependencies and versions
+
+kind github:https://github.com/kubernetes-sigs/kind   
+kind web site:[kind.sigs.k8s.io/](https://kind.sigs.k8s.io/)
+
+### Versions
+- kind 0.14.0  
+- docker 20.10.17  
+- centos 7.6  
+- helm 3.x  
+
+### Notice
+- 1. Ensure that the component depends on the version  
+- 2. kind means that the machine simulating node with docker container is 
restarted and the container has changed and the scheduler is not working 
anymore. This is a kind limitation and there is a detailed explanation in the 
official document.
+
+## 2.Install the docker
+### 2.1 Install the tutorial
+```
+sudo yum install -y yum-utils device-mapper-persistent-data lvm2
+sudo yum-config-manager --add-repo 
https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
+sudo sed -i 's+download.docker.com+mirrors.aliyun.com/docker-ce+' 
/etc/yum.repos.d/docker-ce.repo
+sudo yum makecache fast
+sudo yum -y install docker-ce
+systemctl start docker
+systemctl enable docker
+```
+
+### 2.2 Setting a Domestic Image

Review Comment:
   update optimize remove domestic and 163



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to