[bitnami/milvus] Fix Milvus notes (#21200)

Signed-off-by: David Gomez <dgomezleon@vmware.com>
This commit is contained in:
David Gomez
2023-11-22 13:06:08 +01:00
committed by GitHub
parent e7850b6779
commit 14a0a4abc1
2 changed files with 8 additions and 5 deletions

View File

@@ -46,6 +46,9 @@ Installed components:
{{- if .Values.queryNode.enabled }}
* query-node
{{- end }}
{{- if .Values.attu.enabled }}
* attu
{{- end }}
{{- if .Values.attu.enabled }}
Attu:
@@ -58,7 +61,7 @@ Attu:
echo "$CLUSTER_IP {{ .Values.attu.ingress.hostname }}" | sudo tee -a /etc/hosts
{{- else }}
1. Get the gateway URL by running these commands:
1. Get the Attu URL by running these commands:
{{- if contains "NodePort" .Values.attu.service.type }}
export NODE_PORT=$(kubectl get --namespace {{ include "common.names.namespace" . }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ template "milvus.attu.fullname" . }})
@@ -67,7 +70,7 @@ Attu:
{{- else if contains "LoadBalancer" .Values.attu.service.type }}
NOTE: It may take a few minutes for the LoadBalancer IP to be available.
You can watch the status of by running 'kubectl get --namespace {{ include "common.names.namespace" . }} svc -w {{ template "milvus.attu.fullname" . }}
export SERVICE_IP=$(kubectl get svc --namespace {{ include "common.names.namespace" . }} {{ template "common.names.fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
export SERVICE_IP=$(kubectl get svc --namespace {{ include "common.names.namespace" . }} {{ template "milvus.attu.fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
echo http://$SERVICE_IP:{{ .Values.attu.service.ports.http }}
{{- else if contains "ClusterIP" .Values.attu.service.type }}
echo "Attu is available at http://127.0.0.1:{{ .Values.attu.service.ports.http }}"
@@ -79,7 +82,7 @@ Attu:
{{- if .Values.proxy.enabled }}
Proxy:
1. Get the gateway URL by running these commands:
1. Get the Proxy URL by running these commands:
{{- if contains "NodePort" .Values.proxy.service.type }}
export NODE_PORT=$(kubectl get --namespace {{ include "common.names.namespace" . }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ template "milvus.proxy.fullname" . }})
@@ -88,7 +91,7 @@ Proxy:
{{- else if contains "LoadBalancer" .Values.proxy.service.type }}
NOTE: It may take a few minutes for the LoadBalancer IP to be available.
You can watch the status of by running 'kubectl get --namespace {{ include "common.names.namespace" . }} svc -w {{ template "milvus.proxy.fullname" . }}
export SERVICE_IP=$(kubectl get svc --namespace {{ include "common.names.namespace" . }} {{ template "common.names.fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
export SERVICE_IP=$(kubectl get svc --namespace {{ include "common.names.namespace" . }} {{ template "milvus.proxy.fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
echo grpc://$SERVICE_IP:{{ .Values.proxy.service.ports.grpc }}
{{- else if contains "ClusterIP" .Values.proxy.service.type }}
echo "Proxy is available at grpc://127.0.0.1:{{ .Values.proxy.service.ports.grpc }}"