写点什么

Flomesh Ingress 使用实践(三)多租户 Ingress

作者:Flomesh
  • 2023-02-06
    北京
  • 本文字数:2028 字

    阅读完需:约 7 分钟

Flomesh Ingress 使用实践(三)多租户 Ingress

在当下的云计算时代,我们经常会听到“租户”、“多租户”。“租户”是多租户架构技术中的概念,这种技术是用来处理多个组织共用同一个系统或者组件时的数据隔离性。在 Kubernetes 中的最简单的多租户是根据命名空间( Namespace)进行划分的,众多的命名空间将资源/工作负载进行了隔离。



作为 Kubernetes 资源之一的 Ingress 也不例外,用户可以在不同的命名空间下创建 Ingress 资源来控制进入集群的流量。即使 Ingress 资源实现了多租户,但作为组件的 Ingress Controller 依然是共用的,没有做到真正的隔离。


因此就有了多租户 Ingress Controller 的诉求:每个命名空间下都有独立的 Ingress Controller,命名空间之间做到组件的隔离,达到了互不影响目的。

原理

Flomesh 提出了 NamespacedIngress 的概念,通过控制器在指定的命名空间下部署 Ingress Controller。每个 Ingress Controller 只处理各自命名空间下 Ingress 资源标识的流量。


比如下面的 YAML 中定义了监控在端口 100 上的 Ingress Controller,同时还会为其创建 LoadBalancer 类型的 Service,监听在 100 端口。


apiVersion: flomesh.io/v1alpha1  kind: NamespacedIngress  metadata:    name: namespaced-ingress-100    namespace: test-100  spec:    serviceType: LoadBalancer    ports:    - name: http      port: 100      protocol: TCP  
复制代码



Demo

安装 Flomesh Ingress Controller

Flomesh 提供了标准的 Helm chart,可以通过 Helm CLI 进行安装。


helm repo add fsm https://flomesh-io.github.io/fsmhelm repo update
helm install fsm fsm/fsm --namespace fsm --create-namespace \ --version=0.2.1-alpha.2 \ --set fsm.serviceLB.enabled=true \ --set fsm.ingress.namespaced=true
复制代码


确认所有 pod 都启动并正常运行。


kubectl get po -n fsmNAME                           READY   STATUS    RESTARTS   AGEfsm-repo-5f6dc647c7-k4sdl      1/1     Running   0          14sfsm-manager-864c74b978-mgfb2   1/1     Running   0          14s
复制代码

创建示例应用

# 创建命名空间kubectl create ns httpbin
# 部署应用kubectl apply -f https://raw.githubusercontent.com/flomesh-io/osm-edge-docs/main/manifests/samples/httpbin/httpbin.yaml -n httpbin
复制代码

创建独立的 Ingress Controller

接来下就是为命名空间 httpbin 创建独立的 Ingress Controller。


kubectl apply -f - <<EOFapiVersion: flomesh.io/v1alpha1kind: NamespacedIngressmetadata:  name: namespaced-ingress-httpbin  namespace: httpbinspec:  serviceType: LoadBalancer  http:    port:      name: http      port: 81      nodePort: 30081  resources:    limits:      cpu: 500m      memory: 200Mi    requests:      cpu: 100m      memory: 20MiEOF
复制代码


执行完上面的命令之后,在命名空间 httpbin 下会看到有 Ingress Controller 成功运行。


kubectl get po -n httpbin -l app=fsm-ingress-pipyNAME                                        READY   STATUS    RESTARTS   AGEfsm-ingress-pipy-httpbin-7ff774cd98-vl5v8   1/1     Running   0          15s
复制代码


此时,该命名空间下还有对应的 Service


kubectl get svc -n httpbin -l app.kubernetes.io/component=controllerNAME                       TYPE           CLUSTER-IP    EXTERNAL-IP   PORT(S)        AGEfsm-ingress-pipy-httpbin   LoadBalancer   10.43.86.31   10.0.0.12     81:30081/TCP   27s
复制代码


有了 Ingress Controller 之后,就是创建 Ingress 资源了。


kubectl apply -f - <<EOFapiVersion: networking.k8s.io/v1kind: Ingressmetadata:  name: httpbin  namespace: httpbinspec:  ingressClassName: pipy  rules:  - host: httpbin.org    http:      paths:      - path: /        pathType: Prefix        backend:          service:            name: httpbin            port:              number: 14001EOF
复制代码

测试

前面检查 Ingress Controller 的时候,可以看到其外部 IP 地址为 192.168.1.11,端口为 81


export HOST_IP=10.0.0.12curl -sI http://$HOST_IP:81/get -H "Host: httpbin.org"HTTP/1.1 200 OKserver: gunicorn/19.9.0date: Tue, 31 Jan 2023 11:09:20 GMTcontent-type: application/jsoncontent-length: 244access-control-allow-origin: *access-control-allow-credentials: trueconnection: keep-alive
复制代码

总结

多租户的 Ingress Controller 在云环境中,尤其是复杂组织的系统中非常使用,做到了配置和组件的双重隔离。本篇演示的是简单应用的 controller 隔离,对于服务网格的环境下使用方法相同,有兴趣的同学可以尝试一下。


引用链接

[1] NamespacedIngresshttps://github.com/flomesh-io/fsm/blob/main/charts/fsm/crds/flomesh.io_namespacedingresses.yaml

发布于: 刚刚阅读数: 3
用户头像

Flomesh

关注

微信订阅号:flomesh 2022-04-07 加入

一站式云原生应用流量管理供应商 官网:https://flomesh.io

评论

发布
暂无评论
Flomesh Ingress 使用实践(三)多租户 Ingress_命名空间_Flomesh_InfoQ写作社区