如何通過Rancher webhook微服務實現Service/Host的彈性伸縮
概述
結合大家CICD的應用場景,本篇Blog旨在介紹如何通過Rancher的webhook微服務來實現Service/Host的彈性伸縮。
流程介紹
Service Scale
創建example服務對象。
創建service scale webhook對象。
第三方觸發webhook,完成service彈性伸縮。
Host Sacle
通過阿裏雲machine driver創建實例對象,打上scale-up標簽。
創建host scale webhook對象。
第三方觸發webhook,完成host彈性伸縮。
webhook介紹
Rancher webhook的服務流程大致如下:
Webhook Driver(WD)初始化。
Router Handler(RH)初始化。
接收請求URL和Method,匹配調用RH.Execute或其他方法,RH.Execute解析請求數據得到WD_Id,進而執行WD.Execute,最後返回並response。
環境準備
Platform
Mac,Windows,Linux,Docker Cloud,AWS,Azure均可部署。
本次準備的平臺是Ubuntu發行版(14.04),為了兼容docker,選擇linux發行版的時候內核需控制在3.10以上。
Docker
根據用戶選擇的平臺安裝docker引擎,安裝指導可參考https://docs.docker.com官方文檔,搭配Rancher使用,docker引擎版本最優選擇1.12.6或者1.13.1。
本次準備的docker引擎版本是1.12.6。
Rancher
實踐步驟
Service Scale
創建example service
curl -u "xx:xx" -X POST -H ‘Accept: application/json‘ -H ‘Content-Type: application/json‘ -d ‘{ "description": "example service for scaling", "name": "webapp", "system": false, "dockerCompose": "version: ‘2‘\nservices:\n NGX:\n image: nginx:alpine\n stdin_open: true\n tty: true\n cpuset: \"0\"\n ports:\n - 8787:80/tcp\n cpu_shares: 1024\n labels:\n io.rancher.container.pull_image: always\n servicename: nginx", "rancherCompose": "version: ‘2‘\nservices:\n NGX:\n scale: 1\n start_on_create: true", "binding": null, "startOnCreate": true }‘ ‘http://a.b.c.d:8080/v2-beta/projects/1a5/stacks‘
創建webhook
Trigger webhook
Host Scale
創建example host
創建webhook
圖11
Trigger webhook
原文來源:Rancher Labs
本文出自 “12452495” 博客,請務必保留此出處http://12462495.blog.51cto.com/12452495/1971363
如何通過Rancher webhook微服務實現Service/Host的彈性伸縮