How to Deploy Typesense on Kubernetes

How to Deploy Typesense on Kubernetes

This guide provides a step-by-step tutorial to deploy Typesense, a fast and typo-tolerant search engine, on a Kubernetes cluster. The setup includes a secure configuration using Secrets, persistent storage, and external access through Ingress.

Prerequisites

  1. Kubernetes Cluster: Ensure you have a running Kubernetes cluster with kubectl configured.
  2. Namespace: Use the internal namespace for this deployment or modify it as needed.
  3. Ingress Controller: Ensure an Ingress controller (e.g., NGINX) is installed in your cluster.

Step 1: Create a ConfigMap for Server Configuration

The ConfigMap stores the server-name for the Typesense instance.

apiVersion: v1
kind: ConfigMap
metadata:
  name: typesense-config
  namespace: internal
data:
  server-name: "typesense-node"

Apply the ConfigMap:

kubectl apply -f typesense-config.yaml

Step 2: Create a Secret for the API Key

The Secret secures the Typesense API key.

apiVersion: v1
kind: Secret
metadata:
  name: typesense-secret
  namespace: internal
type: Opaque
stringData:
  api-key: <your-secure-api-key> # Replace with your actual API key

Apply the Secret:

kubectl apply -f typesense-secret.yaml

Step 3: Configure Persistent Storage

Set up a PersistentVolumeClaim (PVC) for data storage.

apiVersion: v1
kind: PersistentVolumeClaim
metadata:
  name: typesense-pvc
  namespace: internal
spec:
  accessModes:
    - ReadWriteOnce
  resources:
    requests:
      storage: 10Gi
  storageClassName: local-path # Adjust based on your storage setup

Apply the PVC:

kubectl apply -f typesense-pvc.yaml

Step 4: Deploy Typesense

The Deployment defines the Typesense pod and configures environment variables using the Secret and ConfigMap.

apiVersion: apps/v1
kind: Deployment
metadata:
  name: typesense
  namespace: internal
spec:
  replicas: 1
  selector:
    matchLabels:
      app: typesense
  template:
    metadata:
      labels:
        app: typesense
    spec:
      containers:
        - name: typesense
          image: typesense/typesense:0.24.0
          ports:
            - containerPort: 8108
          env:
            - name: TYPESENSE_API_KEY
              valueFrom:
                secretKeyRef:
                  name: typesense-secret
                  key: api-key
            - name: SERVER_NAME
              valueFrom:
                configMapKeyRef:
                  name: typesense-config
                  key: server-name
            - name: TYPESENSE_DATA_DIR
              value: /data
          volumeMounts:
            - name: typesense-data
              mountPath: /data
          resources:
            requests:
              memory: "1Gi"
              cpu: "1"
            limits:
              memory: "1Gi"
              cpu: "1"
      volumes:
        - name: typesense-data
          persistentVolumeClaim:
            claimName: typesense-pvc

Apply the Deployment:

kubectl apply -f typesense-deployment.yaml

Step 5: Create a Service for Access

Expose the Typesense pod using a Service. Use NodePort for direct access or modify it to ClusterIP for internal use.

apiVersion: v1
kind: Service
metadata:
  name: typesense-service
  namespace: internal
spec:
  type: NodePort
  selector:
    app: typesense
  ports:
    - protocol: TCP
      port: 8108
      targetPort: 8108
      nodePort: 30008 # Adjust the port as needed

Apply the Service:

kubectl apply -f typesense-service.yaml

Step 6: Configure Ingress

Set up an Ingress resource to route external traffic to the Typesense Service. Ensure your Ingress controller is properly configured.

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  name: ks3-ingress
  namespace: internal
  annotations:
    nginx.ingress.kubernetes.io/rewrite-target: /
spec:
  rules:
  - http:
      paths:
      - path: /
        pathType: Prefix
        backend:
          service:
            name: typesense-service
            port:
              number: 8108

Apply the Ingress:

kubectl apply -f typesense-ingress.yaml

Step 7: Verify Deployment

  1. Access Typesense via the Ingress URL (e.g., http://<your-domain>).

Check the status of the pods and services:

kubectl get pods -n internal
kubectl get svc -n internal
kubectl get ingress -n internal

以上資訊用ChatGPT整理。

Read more

如何安裝 KubeSphere 以及管理 Workspace 和新增 Label

前言 在 Kubernetes 的世界中,KubeSphere 是一個功能強大的開源容器平台,它不僅讓 Kubernetes 的管理更簡單,還集成了多集群管理、DevOps、微服務治理等功能。本篇文章將教您如何使用 Helm 快速安裝 KubeSphere,並如何通過管理 Workspace 和新增 Label 來實現資源的高效管理。 一、使用 Helm 安裝 KubeSphere 1. 為什麼選擇 Helm 安裝? Helm 是 Kubernetes 中廣泛使用的包管理工具,使用 Helm 安裝 KubeSphere 有以下優點: * 自動化:簡化安裝過程,減少手動配置。 * 靈活性:可以根據需求自定義安裝的模組。 * 版本控制:支持管理和回滾安裝的不同版本。 2. 安裝前準備 在開始安裝之前,請確保以下條件:

By Tim Chiagn

我的經驗

1. 網絡與安全 (Networking & Security) * Fortigate: 防火牆來管理網路環境 * Traefik: 用於 K8s 的 2. 虛擬化與存儲 (Virtualization & Storage) * Esxi: 買了一台server 使用 Esxi 管理 vm * TrueNAS: 還沒有買 NAS 使用這個加減用一下 3. DevOps 與持續交付 (DevOps & CI/CD) * ArgoCD: GitOps 工具,用於 Kubernetes 的應用交付和管理,支持自動化部署和同步。 * KubeSphere:提供完整的 CI/CD 工作流管理、應用部署和 DevOps 整合功能,是 Kubernetes

By Tim Chiagn