docker/kubernetes
文章平均质量分 78
yjph83
java golang
展开
-
docker 构建自己的nginx静态服务代理
1、搜索nginx~ docker search nginxNAME DESCRIPTION STARS OFFICIAL AUTOMATEDnginx O...原创 2019-11-04 20:13:32 · 420 阅读 · 0 评论 -
Docker 安装MySQL 5.7
首先已经安装好了docker应用;1、查看docker仓库中的mysql命令➜ ~ docker search mysqlNAME DESCRIPTION STARS OFFICIAL AUTOMAT...原创 2019-07-09 14:37:16 · 39274 阅读 · 2 评论 -
dockerfile打centos7的jdk基础镜像
FROM centos:7ADD jdk-8u172-linux-x64.tar.gz /usr/local/ ENV JAVA_HOME /usr/local/jdk1.8.0_172ENV CLASSPATH $JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jarENV PATH $PATH:$JAVA_HOME/bin原创 2018-04-23 17:37:07 · 1217 阅读 · 1 评论 -
prometheus 2.x版本的常用变化
最近用了prometheus 2.0 版本,感觉改变还是有点大,现将改变相关记录如下:1、prometheus.yml文件配置修改后,要想重新加载,必须在启动的时候添加参数: --web.enable-lifecycle 比如:nohup ./prometheus --web.enable-lifecycle --config.file=prometheus.yml...原创 2017-11-15 15:31:29 · 599 阅读 · 0 评论 -
prometheus 监控相关(docker方式)
http://www.ywnds.com/?p=9668 (使用Docker安装Prometheus) 1、docker必须先安装好,不清楚自己先安装好docker-ce 不清楚,请看centOS7 安装使用docker 2、安装prometheus docker run --name=prometheus -d -p 9090:9090 -v ...原创 2017-09-27 17:46:36 · 648 阅读 · 0 评论 -
prometheus 监控相关(非docker方式)
https://www.gitbook.com/book/songjiayang/prometheus/details (Prometheus 实战) https://github.com/1046102779/prometheus (Prometheus 非官方中文手册) http://www.bubuko.com/infodetail-2004088.html (基于prome...原创 2017-09-25 13:41:10 · 954 阅读 · 0 评论 -
node-exporter常用指标含义
https://www.gitbook.com/book/songjiayang/prometheus/details (Prometheus 实战) https://github.com/1046102779/prometheus (Prometheus 非官方中文手册)http://www.bubuko.com/infodetail-2004088.html (基于promethe...原创 2017-09-22 10:29:31 · 14325 阅读 · 1 评论 -
cadvisor 常用容器监控指标
https://github.com/google/cadvisor (cAdvisor) 前提概念:1.时间序列是指将同一统计指标的数值按其发生的时间先后顺序排列而成的数列2. =:选择正好相等的字符串标签!=:选择不相等的字符串标签=~:选择匹配正则表达式的标签(或子标签)!~:选择不匹配正则表达式的标签(或子标签)3.s:s...原创 2017-09-22 10:27:32 · 9229 阅读 · 2 评论 -
Kubernetes 常用命令收集
http://www.cnblogs.com/chen0958/p/5737898.html (Kubernetes之kubectl常用命令)http://www.cnblogs.com/ximalaya/p/7169763.html (kubernetes常用命令)http://blog.csdn.net/liumiaocn/article/details/73997635 (Ku...原创 2017-09-12 13:59:12 · 225 阅读 · 0 评论 -
使用kubeadm在Red Hat 7/CentOS 7快速部署Kubernetes 1.7集群
http://dockone.io/article/2514 (使用kubeadm在Red Hat 7/CentOS 7快速部署Kubernetes 1.7集群)https://www.kubernetes.org.cn/kubernetes设计架构 (Kubernetes设计架构)http://www.cnblogs.com/liangDream/p/7358847.html (...原创 2017-09-12 13:34:05 · 428 阅读 · 0 评论 -
CentOS7 安装使用docker
参考:http://www.server110.com/docker/list_4.htmlhttp://www.docker.org.cn/book/docker.html(docker中文社区、手册)http://www.server110.com/docker/201411/11057.html (docker基本使用)https://yeasy.gitbooks.io...原创 2016-04-13 09:52:20 · 112 阅读 · 0 评论