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

溫馨提示×

溫馨提示×

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

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

如何基于k8s的Ingress部署hexo博客

發布時間:2021-07-28 18:51:47 來源:億速云 閱讀:217 作者:chen 欄目:云計算

這篇文章主要介紹“如何基于k8s的Ingress部署hexo博客”,在日常操作中,相信很多人在如何基于k8s的Ingress部署hexo博客問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”如何基于k8s的Ingress部署hexo博客”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

注:kuberntes版本為1.15

什么是 Ingress

Ingress 是一個提供對外服務的路由和負載均衡器,其本質是個nginx控制器服務。

k8s文檔上Ingress經典數據鏈路圖:

    internet
        |
   [ Ingress ]
   --|-----|--
   [ Services ]

對博客進行改造

構建Dockefile

先容器化整個Hexo項目,構建Dockefile,這里采用nginx + 靜態資源的形式部署(主要為了節約內存CPU):

FROM nginx:1.13.0-alpine
LABEL maintainer="hexo-shikanon-blog <shikanon@tensorbytes.com>"

# 裝載編譯后的文件對外訪問
COPY ./public /usr/share/nginx/html
構建Deployment

構建一個Deployment服務將其部署上kubernetes:

apiVersion: apps/v1
kind: Deployment
metadata:
  name: nginx-hexo-blog-delopyment
  labels:
    webtype: staticblog
spec:
  replicas: 2
  selector:
    matchLabels:
      webtype: staticblog
  template:
    metadata:
      labels:
        webtype: staticblog
        function: blog
    spec:
      containers:
        - name: hexo-blog
          image: nginx-hexo-blog:0.0.1
          ports:
            - containerPort: 80
構建Service暴露服務端口

構建一個Service暴露統一的服務端口:

apiVersion: v1
kind: Service
metadata:
  name: static-blog
spec:
  selector:
    webtype: staticblog
  ports:
    - protocol: TCP
      port: 80
      targetPort: 80 # deployment的端口,

這里創建一個名稱為 "static-blog" 的 Service 對象,它會將請求代理到使用 TCP 端口 targetPort,并且具有標簽 "webtype: staticblog" 的 Pod 上。

查看端口信息:

$ kubectl get svc NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE kubernetes ClusterIP 10.13.0.1 <none> 443/TCP 10d static-blog ClusterIP 10.13.83.44 <none> 80/TCP 8h

測試端口是否可以訪問:

$ curl -I 10.13.83.44 HTTP/1.1 200 OK Server: nginx/1.13.0 Date: Wed, 16 Oct 2019 16:51:13 GMT Content-Type: text/html Content-Length: 71636 Last-Modified: Mon, 29 Jul 2019 19:25:29 GMT Connection: keep-alive ETag: "5d3f4829-117d4" Accept-Ranges: bytes

構建Ingress服務

最后一步,構建Ingress服務對外部提供服務和反向代理:

apiVersion: extensions/v1beta1
kind: Ingress
metadata:
  name: reverse-proxy
  annotations:
    nginx.ingress.kubernetes.io/rewrite-target: /
spec:
  rules:
  - host: www.shikanon.com
    http:
      paths:
        - backend:
            serviceName: static-blog
            servicePort: 80

完成!

構建HTTPS網站

用secret類型對象保存密鑰數據

Secret 對象類型用來保存敏感信息,例如密碼、OAuth 令牌和 ssh key,其中 ssh key 就是一個經典的應用。

Secret 參數用例:

kubectl create secret -h
Create a secret using specified subcommand.

Available Commands:
  docker-registry Create a secret for use with a Docker registry
  generic         Create a secret from a local file, directory or literal value
  tls             Create a TLS secret

Usage:
  kubectl create secret [flags] [options]

創建Secret加密對象:

kubectl create secret tls shikanon-ssh-key-secret --cert=/home/shikanon/web/www/ssl/cert.pem --key=/home/shikanon/web/www/ssl/private.key

修改Ingress:

apiVersion: extensions/v1beta1
kind: Ingress
metadata:
  name: reverse-proxy
  annotations:
    nginx.ingress.kubernetes.io/rewrite-target: /
spec:
  rules:
  - host: www.shikanon.com
    http:
      paths:
        - backend:
            serviceName: static-blog
            servicePort: 80
  tls:
  - hosts: 
    - www.shikanon.com
    secretName: shikanon-ssh-key-secret

注:一個Ingress只能支持一個tls

到此,關于“如何基于k8s的Ingress部署hexo博客”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

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

AI

辉南县| 西峡县| 乌苏市| 吉林市| 固始县| 辽阳县| 大埔区| 凤山市| 湘乡市| 遂川县| 彭水| 海宁市| 汉阴县| 天长市| 温宿县| 开化县| 碌曲县| 巴彦淖尔市| 通州市| 津市市| 诸城市| 外汇| 台中市| 定兴县| 叶城县| 太白县| 湄潭县| 潼关县| 溆浦县| 河曲县| 门头沟区| 兴业县| 来安县| 察隅县| 汨罗市| 涟水县| 噶尔县| 桐庐县| 灌阳县| 漠河县| 新化县|