v1.0.1-beta.1
This commit is contained in:
@ -1,17 +0,0 @@
|
||||
.theme-container.overview-page-class {
|
||||
.feature {
|
||||
flex-grow: 1;
|
||||
flex-basis: 30%;
|
||||
max-width: 30%;
|
||||
h2 {
|
||||
font-size: 1.4rem;
|
||||
font-weight: 500;
|
||||
border-bottom: none;
|
||||
padding-bottom: 0;
|
||||
|
||||
}
|
||||
p {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 103 KiB |
BIN
guide/cluster/storage-create.assets/image-20190814111245506.png
Normal file
BIN
guide/cluster/storage-create.assets/image-20190814111245506.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 170 KiB |
@ -74,20 +74,25 @@
|
||||
|
||||

|
||||
|
||||
* 获取 NFS 连接参数:
|
||||
### 获取 NFS 连接参数
|
||||
|
||||
在上图界面中,将 ***V4 Mount*** 的指令复制下来后,如下所示:
|
||||
::: tip
|
||||
您可以使用自己的 NFS 服务,或者其他云供应商的 NFS 服务,具体 NFS 连接参数请参考该 NFS 服务的产品手册。
|
||||
:::
|
||||
|
||||
以阿里云为例,在上图界面中,将 ***V4 Mount*** 的指令复制下来后,如下所示:
|
||||
|
||||
<div style="font-family: Monaco,Menlo,Consolas,Bitstream Vera Sans Mono,monospace; padding: 20px; background-color: rgb(244, 244, 245);border-radius: 4px;">
|
||||
sudo mount -t nfs -o vers=4,minorversion=0,noresvport <span style="color: red; background-color: rgb(254, 240, 240);">189344a39c-lex38.cn-beijing.nas.aliyuncs.com</span>:<span style="color: blue; background-color: rgb(217, 236, 255);">/</span> /mnt
|
||||
sudo mount -t nfs -o <span style="color: blue; background-color: rgb(217, 236, 255);">vers=4,minorversion=0,noresvport</span> <span style="color: red; background-color: rgb(254, 240, 240);">189344a39c-lex38.cn-beijing.nas.aliyuncs.com</span>:<span style="color: blue; background-color: rgb(217, 236, 255);">/</span> /mnt
|
||||
</div>
|
||||
|
||||
其中红色字体的文字为 NFS Server 的地址,蓝色字体的文字为 NFS Path。如下表所示:
|
||||
|
||||
| 字段名称 | 字段取值 | 说明 |
|
||||
| ---------- | -------------------------------------------- | ------------------------------ |
|
||||
| ------------ | -------------------------------------------- | ------------------------------ |
|
||||
| NFS Server | 189344a39c-lex38.cn-beijing.nas.aliyuncs.com | |
|
||||
| NFS Path | / | NFS Server和NFS Path以冒号分隔 |
|
||||
| mountOptions | vers=4,minorversion=0,noresvport | 以逗号分隔的数组 |
|
||||
|
||||
|
||||
### 在 Kuboard 创建存储类
|
||||
@ -112,9 +117,7 @@ sudo mount -t nfs -o vers=4,minorversion=0,noresvport <span style="color: red; b
|
||||
| 回收策略 | 回收后删除 | 当该存储类创建的 存储卷(Persistent Volume)被删除后,之前该存储卷中的文件可以被:回收后删除 / 回收后保留 |
|
||||
| 存储卷绑定模式 | 首次使用时绑定 | 即刻绑定:当 存储卷被创建时,就在 NFS 中为其分配空间,并绑定;<br />首次使用时绑定: 在存储卷被第一次使用到时,才绑定 |
|
||||
|
||||
|
||||
|
||||

|
||||

|
||||
|
||||
|
||||
|
||||
|
||||
@ -1,13 +1,17 @@
|
||||
## v1.0.0-beta.14
|
||||
## v1.0.1-beta.1
|
||||
|
||||
**发布日期**
|
||||
|
||||
2019-08-03
|
||||
2019-08-15
|
||||
|
||||
**优化**
|
||||
|
||||
* 创建 namespace/configmap/secrets/pvc/deployment/Service/Ingress 等 K8S 对象时,对表单中的名字等字段做 trim() 操作
|
||||
* 修改日志、终端连接错误时的提示信息
|
||||
* 工作负载编辑器 - 数据卷,增加 hostPath 类型
|
||||
* 工作负载编辑器 - 服务分层,点击时跳转到微服务参考架构页面
|
||||
* 工作负载编辑器 - 资源限制,增加格式提示
|
||||
* 工作负载编辑器 - 容器,可以自定义抓取策略 imagePullPolicy
|
||||
* NFS 类型的 StorageClass 增加 mountOptions 选项
|
||||
|
||||
**BUG 修复**
|
||||
|
||||
* 工作负载查看页面 - 接收到容器组变化事件后,容器组详情未触发更新
|
||||
@ -1,5 +1,23 @@
|
||||
# 更新日志
|
||||
|
||||
## v1.0.1-beta.1
|
||||
|
||||
**发布日期**
|
||||
|
||||
2019-08-15
|
||||
|
||||
**优化**
|
||||
|
||||
* 工作负载编辑器 - 数据卷,增加 hostPath 类型
|
||||
* 工作负载编辑器 - 服务分层,点击时跳转到微服务参考架构页面
|
||||
* 工作负载编辑器 - 资源限制,增加格式提示
|
||||
* 工作负载编辑器 - 容器,可以自定义抓取策略 imagePullPolicy
|
||||
* NFS 类型的 StorageClass 增加 mountOptions 选项
|
||||
|
||||
**BUG 修复**
|
||||
|
||||
* 工作负载查看页面 - 接收到容器组变化事件后,容器组详情未触发更新
|
||||
|
||||
## v1.0.0
|
||||
|
||||
**发布日期**
|
||||
|
||||
Reference in New Issue
Block a user