1 <div class="row mt16 o_settings_container"> 2 <div class="col-12 col-lg-6 o_setting_box"> 3 <div class="o_setting_right_pane"> 4 <label for="resourc ...
分类:
其他好文 时间:
2020-09-11 14:22:32
阅读次数:
33
Pod: 上承节点,下接容器 非常重要 Pause Pod的根容器,用于Pod的状态,管理,提供Pod内容器的共享IP,共享挂载 其余为业务容器 静态Pod固定Node中运行 普通Pod被存储在ETCD中供master 分配 如果某个Node 宕机,其上的Pod会被master迁移 Label: 核 ...
分类:
其他好文 时间:
2020-09-04 17:21:11
阅读次数:
42
Kubernetes是什么 Kubernetes的初识 1. K8S是一个全新的基于容器技术的分布式架构领先方案,用于管理云平台中多个主机上的容器化的应用。Kubernetes的目标是让部署容器化的应用简单并且高效(powerful),Kubernetes提供了应用部署,规划,更新,维护的一种机制, ...
分类:
Web程序 时间:
2020-08-25 15:53:19
阅读次数:
59
情况一:前端写表格 代码: <template> <el-table-column header-align="center" align="center" label="单据编号" prop="statementBaseNo"> <template slot-scope="scope"> <el- ...
分类:
其他好文 时间:
2020-08-24 16:54:25
阅读次数:
58
//html代码<div class="layui-form-item"> <label class="layui-form-label">单选框</label> <div class="layui-input-block"> <input type="radio" lay-filter="sex" ...
分类:
其他好文 时间:
2020-08-20 19:09:43
阅读次数:
76
v-model绑定数据传输到后台进行检验: <div id="app"> <fieldset> <legend>登录</legend> <div class="form-group "> <label>帐号</label> <input type="text" class="form-control ...
分类:
其他好文 时间:
2020-08-18 15:44:00
阅读次数:
101
echart3(){ let keyWord = [ { name: '考研', value: 12, x: 200, y: 2, color: '#532' }, { name: '兼职', value: 13, x: 0, y: 0, color: '#463' }, { name: '食堂', ...
分类:
其他好文 时间:
2020-08-18 13:16:24
阅读次数:
73
API Server简介 k8s API Server提供了k8s各类资源对象(pod,RC,Service等)的增删改查及watch等HTTP Rest接口,是整个系统的数据总线和数据中心。 kubernetes API Server的功能: 提供了集群管理的REST API接口(包括认证授权、数 ...
Container contentPane = getContentPane(); contentPane.setLayout(new FlowLayout());//布局管理器 JLabel label = new JLable(); contentPane.add(label); 修改/设置 l ...
分类:
其他好文 时间:
2020-08-13 12:26:45
阅读次数:
55
from numpy import * import operator def classify0(inX, dataSet, labels, k): dataSetSize = dataSet.shape[0]#获取数据集的行数 classify0()函数有4个参数:inX:用于分类的输入向量;d ...
分类:
编程语言 时间:
2020-08-10 17:30:49
阅读次数:
66