Skip to content

Commit

Permalink
kubeasz release 3.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gjmzj committed Feb 9, 2023
1 parent 0279862 commit 97933df
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
<td>kubeasz version</td>
<td>3.1.1</td>
<td>3.2.0</td>
<td>3.3.3</td>
<td>3.4.4</td>
<td>3.5.1</td>
<td>3.3.4</td>
<td>3.4.5</td>
<td>3.5.2</td>
</tr>
</tbody>
</table>
Expand Down
35 changes: 35 additions & 0 deletions docs/release-notes/kubeasz-3.5.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
## kubeasz 3.5.2

kubeasz 3.5.2 发布,解决3.5.1 版本中设置k8s_nodename的bug,以及其他一些fix。

### 支持设置k8s nodename

修复 ISSUE #1225,感谢 surel9

默认情况下kubeasz项目使用节点ip地址作为nodename,如果需要自定义设置支持两种方式:

- 1. 在clusters/xxxx/hosts 直接配置:比如

```
# work node(s), set unique 'k8s_nodename' for each node
[kube_node]
192.168.0.80 k8s_nodename=worker-01
192.168.0.79 k8s_nodename=worker-02
```

- 2. 在添加节点适合设置:比如

```
dk ezctl add-node xxxx 192.168.0.81 k8s_nodename=worker-03
```

特别注意:k8s_nodename 命名规范,只能由小写字母、数字、'-'、'.' 组成,并且开头和结尾必须为小写字母和数字
'k8s_nodename' must consist of lower case alphanumeric characters, '-' or '.', and must start and end with an alphanumeric character (e.g. 'example.com')


### 其他

- 修复:prepare阶段如果安装系统包失败的错误不应该被忽略
- 修复:清理节点时无法删除calico目录/var/run/calico
- 修复:deploy机器上调度的pod无法通信问题 issue #1224,感谢 bogeit

2 changes: 1 addition & 1 deletion ezdown
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ set -o pipefail

# default settings, can be overridden by cmd line options, see usage
DOCKER_VER=20.10.22
KUBEASZ_VER=3.5.1
KUBEASZ_VER=3.5.2
K8S_BIN_VER=v1.26.1
EXT_BIN_VER=1.6.6
SYS_PKG_VER=0.5.2
Expand Down

0 comments on commit 97933df

Please sign in to comment.