Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump default version to 3.0 #314

Merged
merged 4 commits into from
May 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ To provide quick deployment tools for kubernetes cluster and cloud native applic
[![Release][release-image]][release-url]
[![License][license-image]][license-url]

This session has been tested on CentOS 7, Debian 10 and Ubuntu 18.04 which supported by python2.7 for now.
This session has been tested on Rocky 8.5+, Debian 11 and Ubuntu 20.04+ which supported by python3.

## Getting Started
Learn about Kubez Ansible by reading the documentation online [kubez-ansible](https://www.bilibili.com/video/BV1L84y1h7LE/).
Expand Down
4 changes: 2 additions & 2 deletions docs/install/prerequisites.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
#### 直接安装
```shell
# 当有网络的时候建议直接安装(因为简单又方便)
curl https://raw.githubusercontent.com/gopixiu-io/kubez-ansible/stable/tiger/tools/setup_env.sh | bash
curl https://raw.githubusercontent.com/gopixiu-io/kubez-ansible/master/tools/setup_env.sh | bash
```
#### 脚本安装
```text
# 自动获取,网络通时,通过 curl 命令直接获取脚本到本地
curl https://raw.githubusercontent.com/gopixiu-io/kubez-ansible/stable/tiger/tools/setup_env.sh -o setup_env.sh
curl https://raw.githubusercontent.com/gopixiu-io/kubez-ansible/master/tools/setup_env.sh -o setup_env.sh

# 手动获取,自动获取失败时使用,一般因为网络不通或者未安装 curl 命令
# 拷贝项目的 tools/setup_env.sh, 并保存到 setup_env.sh
Expand Down
2 changes: 1 addition & 1 deletion tools/setup_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# This script is intended to be used for install kubernetes env.

REPO=gopixiu-io
# 选择需要安装的分支,默认 stable/tiger 分支
# 选择需要安装的分支,默认 master 分支
BRANCH=master

TARGET=kubez-ansible-${BRANCH//\//-}
Expand Down