🥷
🥷
文章目录
  1. 前言
  2. 安装及配置k8s集群
  3. 常规使用
    1. 访问服务
    2. helm 小记
  4. 后记
  5. Resources

AWS中的K8S以及SecDevOps

前言

这不是一篇基础教程。
先决条件:

  • docker : 容器
  • k8s : 微服务容器平台
  • kops : 自动化在aws上构建k8s
  • helm : k8s包管理器
  • istio : 微服务管理平台
  • datadog : 流量,日志收集分析平台(云)

完整流程:
使用 Kops 在 AWS上构建高可用(同一个可用区内跨region构建多主节点)k8s集群并允许insecureRegistry,然后注入istio,以sidecar方式收集pod内容器流量日志以供其他工具分析监控。k8s从私有镜像拉取 采用datadog对整个集群进行监控。k8s从私有镜像拉取,然后采用helm进行管理k8s的pod,和services发布。

奔向k8s的新架构如图所示,图由visual paradigm(在线工具)绘制。至于为什么选择k8s,好处就不用多说了。文档很多。而且以目前这种操作,可以说落实推动了DevOps。假如开发也很了解k8s的话,可以直接控制自己的版本发布,配置自己的Configmap然后推送到相应的deployment或者暴露出Services。可以说是最好不过了,也是真正意义上的开发即运维。

default

安装及配置k8s集群

首先先把一个域名NS记录解析到AWS上,然后配置一个s3 存储桶用于存储kops启动过程中的状态。然后开始创建集群。

step 1 : 创建集群

1
2
3
4
5
6
7
8
9
10
$ kops create cluster \
--node-count 3 \
--zones us-east-2a,us-east-2b,us-east-2c \
--master-zones us-east-2a,us-east-2b,us-east-2c \
--node-size t2.medium \
--master-size t2.medium \
--topology private \
--networking kopeio-vxlan \
--ssh-public-key ~/.ssh/id_rsa.pub \
useast1.xxx.xxx.xxx

step 2 : 编辑集群,使允许InsecureRegistry,
编辑前需要在当前终端设置环境变量export KOPS_STATE_STORE=s3://xxx.xxxx.xxx

1
$ kops edit cluster --name api.xxx.xxx.xxx

在配置文件中spec下添加,添加之后像下面这样:
1
2
3
4
spec: 
docker:
insecureRegistry: xxxxxxxx:5000
logDriver: json-file

如果需要更新节点,如果设置了autoscaling``即可,否则可以手动编辑kops edit ig node`然后设置max, min即可

step 3 : 更新集群

1
2
$ kops update cluster xxxx.xxxx.xxxx.xxx --yes
$ kops rolling-update cluster --yes

此时你的集群就可以从私有hub上拉取镜像了,但是注意安全组允许该端口开放。

step N: 安装UI插件,以及开启tillerhelm使用

tiller安装

1
2
3
4
$ kubectl create serviceaccount --namespace kube-system tiller  
$ kubectl create clusterrolebinding tiller-cluster-rule --clusterrole=cluster-admin --serviceaccount=kube-system:tiller
$ kubectl patch deploy --namespace kube-system tiller-deploy -p '{"spec":{"template":{"spec":{"serviceAccount":"tiller"}}}}'

dashboard安装

1
$ kubectl create -f https://raw.githubusercontent.com/kubernetes/dashboard/master/src/deploy/recommended/kubernetes-dashboard.yaml

常规使用

访问服务

访问dashboard ui可以直接通过 kubectl proxy进行访问,访问的token获取需要通过kops get secrets admin -oplaintext获得。

1
2
$ kubectl port-forward svc/xxxxx yourport:servicespord
$ kubectl port-forward pod/xxxxx yourport:servicespord

还可以通过暴露服务的方式进行访问,暴露的形式有两种,一种是loadbalance, 一种是nodeport,暴露的话通过kubectl expose service 即可,例如:kubectl expose deployment cloying-chicken-grafana --type=LoadBalancer --name testgrafa --port 80, 然后就会看到这个pod已经可以透过elb访问了。当然也可以直接通过URL去访问,例如,同样是上面的服务,可以通过https://xxx.xxxx.xxx.xxx.shop/api/v1/namespaces/default/services/cloying-chicken-grafana:80/proxy/login 去访问。

helm 小记

几个有用的helm 的repo, helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com/, helm repo add coreos https://s3-eu-west-1.amazonaws.com/coreos-charts/stable.掌握了本地的chart 工程使用才是更好的方式。
helm就像是Ubuntu的apt,非常好用。

后记

踩了快1个月的坑,各种坑。架构暂时done. 日志分析和WAF主要依靠的是服务。当然,还是那句话买服务谁都会,但是应该学习到本质才行。To be !

Resources