71 lines
4.2 KiB
Text
71 lines
4.2 KiB
Text
Thank you for installing {{ .Chart.Name }}!
|
|
|
|
Your release is named {{ .Release.Name }}.
|
|
|
|
To learn more about the release, try:
|
|
|
|
$ helm status {{ .Release.Name }}
|
|
$ helm get all {{ .Release.Name }}
|
|
|
|
{{- if .Values.ingress.enabled }}
|
|
|
|
The application is accessible via the following URL(s):
|
|
{{- range .Values.ingress.hosts }}
|
|
- http{{ if $.Values.ingress.tls }}s{{ end }}://{{ .host }}
|
|
{{- end }}
|
|
|
|
{{- else }}
|
|
|
|
1. Get the Control Plane URL by running these commands:
|
|
{{- if contains "NodePort" .Values.controlPlane.service.type }}
|
|
export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "memora.fullname" . }}-control-plane)
|
|
export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}")
|
|
echo "Control Plane URL: http://$NODE_IP:$NODE_PORT"
|
|
{{- else if contains "LoadBalancer" .Values.controlPlane.service.type }}
|
|
NOTE: It may take a few minutes for the LoadBalancer IP to be available.
|
|
You can watch the status by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "memora.fullname" . }}-control-plane'
|
|
export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "memora.fullname" . }}-control-plane --template "{{"{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}"}}")
|
|
echo "Control Plane URL: http://$SERVICE_IP:{{ .Values.controlPlane.service.port }}"
|
|
{{- else if contains "ClusterIP" .Values.controlPlane.service.type }}
|
|
export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/component=control-plane,app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}")
|
|
export CONTAINER_PORT=$(kubectl get pod --namespace {{ .Release.Namespace }} $POD_NAME -o jsonpath="{.spec.containers[0].ports[0].containerPort}")
|
|
echo "Control Plane URL: http://127.0.0.1:3000"
|
|
kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 3000:$CONTAINER_PORT
|
|
{{- end }}
|
|
|
|
2. Get the API URL by running these commands:
|
|
{{- if contains "NodePort" .Values.api.service.type }}
|
|
export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "memora.fullname" . }}-api)
|
|
export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}")
|
|
echo "API URL: http://$NODE_IP:$NODE_PORT"
|
|
{{- else if contains "LoadBalancer" .Values.api.service.type }}
|
|
NOTE: It may take a few minutes for the LoadBalancer IP to be available.
|
|
You can watch the status by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "memora.fullname" . }}-api'
|
|
export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "memora.fullname" . }}-api --template "{{"{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}"}}")
|
|
echo "API URL: http://$SERVICE_IP:{{ .Values.api.service.port }}"
|
|
{{- else if contains "ClusterIP" .Values.api.service.type }}
|
|
export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/component=api,app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}")
|
|
export CONTAINER_PORT=$(kubectl get pod --namespace {{ .Release.Namespace }} $POD_NAME -o jsonpath="{.spec.containers[0].ports[0].containerPort}")
|
|
echo "API URL: http://127.0.0.1:8080"
|
|
kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:$CONTAINER_PORT
|
|
{{- end }}
|
|
|
|
{{- end }}
|
|
|
|
{{- if not .Values.postgresql.enabled }}
|
|
|
|
NOTE: You are using an external PostgreSQL database.
|
|
Please ensure that:
|
|
1. The database is accessible from the cluster
|
|
2. The pgvector extension is enabled
|
|
|
|
Database migrations run automatically when the API service starts.
|
|
|
|
If you want to pre-initialize the database before deploying (optional):
|
|
kubectl run --namespace {{ .Release.Namespace }} memora-init --rm -it --restart=Never \
|
|
--image={{ .Values.api.image.repository }}:{{ .Values.api.image.tag }} \
|
|
--env="DATABASE_URL={{ include "memora.databaseUrl" . }}" \
|
|
-- python -c "from memora.migrations import run_migrations; run_migrations()"
|
|
{{- end }}
|
|
|
|
For more information, visit: https://github.com/yourusername/memora
|