LocoRichard 3 éve
szülő
commit
f3b315b528
1 módosított fájl, 17 hozzáadás és 17 törlés
  1. 17 17
      doc/en/attu_install-helm.md

+ 17 - 17
doc/en/attu_install-helm.md

@@ -55,7 +55,7 @@ Ensure that you have integrated Ingress controller in your Kubernetes cluster.
 1. Install Milvus and Attu.
 
 ```
-helm install my-release milvus/milvus --set insight.enabled=true
+helm install my-release milvus/milvus --set attu.enabled=true
 ```
 
 2. Check the established Ingress.
@@ -64,20 +64,20 @@ helm install my-release milvus/milvus --set insight.enabled=true
 kubectl get ingress
 ```
 
-3. Check the addresses that correspond to `my-release-milvus-insight` in the returned result.
+3. Check the addresses that correspond to `my-release-milvus-attu` in the returned result.
 
 ```
 NAME                          CLASS    HOSTS                  ADDRESS                               PORTS   AGE
-my-release-milvus-insight    <none>   milvus-insight.local   10.100.32.1,10.100.32.2,10.100.32.3   80      22h
+my-release-milvus-attu        <none>   milvus-attu.local      10.100.32.1,10.100.32.2,10.100.32.3   80      22h
 ```
 
-4. Configure DNS on the device that requires the Attu service by mapping the path `milvus-insight.local` onto any of the addresses returned above in the system file `/etc/hosts`.
+4. Configure DNS on the device that requires the Attu service by mapping the path `milvus-attu.local` onto any of the addresses returned above in the system file `/etc/hosts`.
 
 ```
-10.100.32.1     milvus-insight.local
+10.100.32.1     milvus-attu.local
 ```
 
-5. Visit `http://milvus-insight.local` in your browser, and click **Connect** to enter the Attu service.
+5. Visit `http://milvus-attu.local` in your browser, and click **Connect** to enter the Attu service.
 
 ![Attu_install](../assets/insight_install.png)
 
@@ -88,7 +88,7 @@ Ensure that you have integrated LoadBalancer in your Kubernetes cluster.
 1. Install Milvus and Attu.
 
 ```
-helm install my-release milvus/milvus --set insight.enabled=true --set insight.service.type=LoadBalancer --set insight.ingress.enabled=false
+helm install my-release milvus/milvus --set attu.enabled=true --set attu.service.type=LoadBalancer --set attu.ingress.enabled=false
 ```
 
 2. Check the Attu service.
@@ -97,7 +97,7 @@ helm install my-release milvus/milvus --set insight.enabled=true --set insight.s
 kubectl get svc
 ```
 
-3. Check the external IP of the service `my-release-milvus-insight` in the returned results.
+3. Check the external IP of the service `my-release-milvus-attu` in the returned results.
 
 ```
 NAME                                    TYPE           CLUSTER-IP      EXTERNAL-IP   PORT(S)
@@ -108,7 +108,7 @@ my-release-milvus-datacoord            ClusterIP      10.96.75.27     <none>
 my-release-milvus-datanode             ClusterIP      None            <none>        9091/TCP                              117s
 my-release-milvus-indexcoord           ClusterIP      10.96.183.151   <none>        31000/TCP,9091/TCP                    117s
 my-release-milvus-indexnode            ClusterIP      None            <none>        9091/TCP                              117s
-my-release-milvus-insight              LoadBalancer   10.96.79.103    10.98.0.16    3000:30413/TCP                        117s
+my-release-milvus-attu                 LoadBalancer   10.96.79.103    10.98.0.16    3000:30413/TCP                        117s
 my-release-milvus-querycoord           ClusterIP      10.96.204.140   <none>        19531/TCP,9091/TCP                    117s
 my-release-milvus-querynode            ClusterIP      None            <none>        9091/TCP                              117s
 my-release-milvus-rootcoord            ClusterIP      10.96.142.19    <none>        53100/TCP,9091/TCP                    117s
@@ -121,13 +121,13 @@ my-release-pulsar-zookeeper            ClusterIP      None            <none>
 my-release-pulsar-zookeeper-ca         ClusterIP      10.96.100.254   <none>        2888/TCP,3888/TCP,2181/TCP            117s
 ```
 
-4. Configure DNS on the device that requires the Attu service by mapping the path `my-release-milvus-insight` onto its external IP returned above in the system file `/etc/hosts`.
+4. Configure DNS on the device that requires the Attu service by mapping the path `my-release-milvus-attu` onto its external IP returned above in the system file `/etc/hosts`.
 
 ```
-10.98.0.16 my-release-milvus-insight
+10.98.0.16 my-release-milvus-attu
 ```
 
-5. Visit `http://my-release-milvus-insight:3000/connect` in your browser, and click **Connect** to enter the Attu service.
+5. Visit `http://my-release-milvus-attu:3000/connect` in your browser, and click **Connect** to enter the Attu service.
 
 ![Attu_install](../assets/insight_install.png)
 
@@ -136,22 +136,22 @@ my-release-pulsar-zookeeper-ca         ClusterIP      10.96.100.254   <none>
 1. Install Milvus and Attu.
 
 ```
-helm install my-release milvus/milvus --set insight.enabled=true  --set insight.ingress.enabled=false
+helm install my-release milvus/milvus --set attu.enabled=true  --set attu.ingress.enabled=false
 ```
 
 2. Forward the Attu service to local port `3000`.
 
 ```
-kubectl port-forward service/my-release-milvus-insight 3000
+kubectl port-forward service/my-release-milvus-attu 3000
 ```
 
-3. Configure DNS on the device that forwards the Attu service by mapping the path `my-release-milvus-insight` onto `127.0.0.1` in the system file `/etc/hosts`.
+3. Configure DNS on the device that forwards the Attu service by mapping the path `my-release-milvus-attu` onto `127.0.0.1` in the system file `/etc/hosts`.
 
 ```
-127.0.01 my-release-milvus-insight
+127.0.0.1 my-release-milvus-attu
 ```
 
-4. Visit `http://my-release-milvus-insight:3000/connect` in your browser, and click **Connect** to enter the Attu service.
+4. Visit `http://my-release-milvus-attu:3000/connect` in your browser, and click **Connect** to enter the Attu service.
 
 ![Attu_install](../assets/insight_install.png)