91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

traefik在kubernetes中的安裝及使用方法

發布時間:2021-10-12 11:38:08 來源:億速云 閱讀:375 作者:柒染 欄目:云計算

這篇文章將為大家詳細講解有關traefik在kubernetes中的安裝及使用方法,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

  • 環境 traefik 2.2+,k8s 1.18+

  • 需求:自動獲得證書,使用aliyun dns方式獲證書,暴露給外網訪問

  • 參考官方網站:https://docs.traefik.io/user-guides/crd-acme/

  • 首先安裝helm, k8s的一個類似yum包管理器。 參考https://helm.sh/docs/intro/install/

  1. Download your desired version

  2. Unpack it (tar -zxvf helm-v3.0.0-linux-amd64.tar.gz)

  3. Find the helm binary in the unpacked directory, and move it to its desired destination (mv linux-amd64/helm /usr/local/bin/helm)

  • traefik有二種模式: 1. 使用 Traefik CRD 配置路由規則(IngressRoute),2. 使用 Kubernetes Ingress 配置路由規則(Ingress)

  • IngressRoute Definition,拷貝 https://docs.traefik.io/user-guides/crd-acme/#ingressroute-definition 里面的yaml文件并應用

kubectl apply -f ingress-route-definition.yaml
  • 創建ServiceSecret

#說明1:secret的數據需要base64編碼(https://kubernetes.io/zh/docs/concepts/configuration/secret/)
echo -n 'admin' | base64

#說明2:增加一個存儲(根據實際情況修改),驗證通過的證書我們這里存到/etc/acme/acme.json文件中,我們一定要將這個文件持久化,否則每次 Traefik 重建后就需要重新認證
#說明3:Service直接暴露了端口使用(NodePort),未使用官方文檔的kubectl port-forward
#說明4:- --providers.kubernetesingress
#      - --providers.kubernetescrd
#      導出二種支持的模式ingress, ingress-route
#說明5:dashboard不直接導出,保護資源,后面會通過https+basic auth方式查看
#traefik.yaml
apiVersion: v1
kind: ServiceAccount
metadata:
  name: traefik-ingress-controller

---
apiVersion: v1
kind: Secret
metadata:
  name: aliyun-secret
data:
  ALICLOUD_ACCESS_KEY: your_key_base64
  ALICLOUD_SECRET_KEY: your_secret_base64
  ALICLOUD_REGION_ID: your_region_base64

---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
  name: traefik-acme-cephfs-pvc
spec:
  accessModes:
  - ReadWriteMany
  resources:
    requests:
      storage: 1Gi
  storageClassName: rook-cephfs

---
kind: Deployment
apiVersion: apps/v1
metadata:
  name: traefik
  labels:
    app: traefik

spec:
  replicas: 1
  selector:
    matchLabels:
      app: traefik
  template:
    metadata:
      labels:
        app: traefik
    spec:
      serviceAccountName: traefik-ingress-controller
      volumes:
      - name: acme-store
        persistentVolumeClaim:
          claimName: traefik-acme-cephfs-pvc
          readOnly: false
      containers:
        - name: traefik
          image: traefik:v2.4
          args:
            - --api.insecure
            - --log.level=INFO
            - --accesslog
            - --entrypoints.web.Address=:8000
            - --entrypoints.websecure.Address=:4443
            - --providers.kubernetesingress
            - --providers.kubernetescrd
            - --certificatesresolvers.aliyun.acme.dnschallenge.provider=alidns
            - --certificatesresolvers.aliyun.acme.email=your_email@qq.com
            - --certificatesresolvers.aliyun.acme.storage=/etc/acme/acme.json
          envFrom:
            - secretRef:
                name: aliyun-secret
          volumeMounts:
            - name: acme-store
              mountPath: /etc/acme
          ports:
            - name: web
              containerPort: 8000
            - name: websecure
              containerPort: 4443
            - name: admin
              containerPort: 8080

---
apiVersion: v1
kind: Service
metadata:
  name: traefik
spec:
  type: NodePort
  selector:
    app: traefik
  ports:
    - protocol: TCP
      port: 8000
      name: web
      targetPort: 80
      nodePort: 31001
    - protocol: TCP
      port: 4443
      name: websecure
      targetPort: 4443
      nodePort: 31000

---
apiVersion: v1
kind: Service
metadata:
  name: traefik-dashboard
spec:
  selector:
    app: traefik
  ports:
    - protocol: TCP
      port: 8080
      name: admin
      targetPort: 8080
  • 模式一:在實際應用中創建Ingress

kind: Ingress
apiVersion: networking.k8s.io/v1beta1
metadata:
  name: myingress
  annotations:
    traefik.ingress.kubernetes.io/router.tls: "true"
    traefik.ingress.kubernetes.io/router.entrypoints: websecure
    traefik.ingress.kubernetes.io/router.tls.certresolver: aliyun
    traefik.ingress.kubernetes.io/router.tls.domains.0.main: your_domain.com

spec:
  rules:
    - host: your_domain.com
      http:
        paths:
          - path: /bar
            backend:
              serviceName: whoami
              servicePort: 80
          - path: /foo
            backend:
              serviceName: whoami
              servicePort: 80
  • 模式二:IngressRoute

    apiVersion: traefik.containo.us/v1alpha1
    kind: IngressRoute
    metadata:
      name: ingressi-route-wqtls
      namespace: default
    spec:
      entryPoints:
        - websecure
      routes:
      - match: Host(`your_domain.com`)
        kind: Rule
        services:
        - name: whoami
          port: 80
      tls:
        certResolver: aliyun
        domains:
        - main: "your_domain.com"


     

  • 解析域名并可以訪問了https://your_domain.com:31000/bar

  • traefik在kubernetes中的安裝及使用方法

  • dashboard安全使用。參考:  https://docs.traefik.io/operations/dashboard/

    #通過以下命令生成(在線生成https://tool.oschina.net/htpasswd)帳號密碼
    #并替換Secret中的users
    sudo apt install apache2-utils
    echo $(htpasswd -nb admin gJv4EAfuXp5vFJ8)


apiVersion: v1
kind: Secret
metadata:
  name: traefik-dashboard-auth-secret
  namespace: default
type: Opaque
stringData:
  users: admin:$apr1$tQ1iFwRf$8SvGrGQcBT.RdZS73ULXH1

---
apiVersion: traefik.containo.us/v1alpha1
kind: Middleware
metadata:
  name: traefik-dashboard-auth
  namespace: default
spec:
  basicAuth:
    secret: traefik-dashboard-auth-secret

---
apiVersion: traefik.containo.us/v1alpha1
kind: IngressRoute
metadata:
  name: traefik-dashboard
  namespace: default
spec:
  entryPoints:
  - websecure
  routes:
  - kind: Rule
    match: Host(`traefik.your_domain.com`) && (PathPrefix(`/dashboard`) || PathPrefix(`/api`))
    services:
    - kind: TraefikService
      name: api@internal
    middlewares:
    - name: traefik-dashboard-auth
  tls:
    certResolver: aliyun
    domains:
    - main: "traefik.your_domain.com"

 traefik在kubernetes中的安裝及使用方法

關于traefik在kubernetes中的安裝及使用方法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

开远市| 塘沽区| 通许县| 乌拉特后旗| 山西省| 安塞县| 城口县| 梨树县| 库尔勒市| 平昌县| 连城县| 迁西县| 汉寿县| 赞皇县| 龙南县| 三江| 准格尔旗| 光山县| 谢通门县| 甘南县| 洛宁县| 徐闻县| 富民县| 雅江县| 石门县| 察雅县| 贞丰县| 贵定县| 罗田县| 德清县| 镇平县| 左权县| 肃宁县| 西畴县| 牡丹江市| 辽宁省| 夏河县| 临高县| 阿克| 全州县| 伊通|