Skip to content

Latest commit

 

History

History
55 lines (37 loc) · 1.59 KB

README.md

File metadata and controls

55 lines (37 loc) · 1.59 KB

Official FunctionMesh Helm Chart

This is the officially supported Helm Chart for installing FunctionMesh on Kubernetes.

Requirements

Before installing the FunctionMesh operator, ensure to perform the following operations.

Install FunctionMesh operator

  1. Register the CRDs with the Kubernetes cluster.

    kubectl apply -f ./crds
    
  2. Create a Kubernetes namespace.

    kubectl create namespace <k8s-namespace>
    
  3. Install the FunctionMesh operator.

    helm install function-mesh streamnative/function-mesh-operator --namespace <k8s-namespace>
    
  4. Verify that the FunctionMesh operator is installed successfully.

    kubectl get pods -l app.kubernetes.io/component=controller-manager

    Expected outputs:

    NAME                                READY   STATUS      RESTARTS   AGE
    function-mesh-controller-manager-696f6467c9-mbstr               1/1     Running     0          77s
    

Uninstall FunctionMesh operator

Use the following command to uninstall FunctionMesh operator.

helm uninstall function-mesh