Skip to content

Commit

Permalink
update version to v3.3.1-rc.2
Browse files Browse the repository at this point in the history
Signed-off-by: pixiake <[email protected]>
  • Loading branch information
pixiake committed Sep 16, 2022
1 parent de4d65e commit a1980ee
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ If your Kubernetes cluster environment meets all requirements mentioned above, t
### Minimal Installation

```bash
kubectl apply -f https://github.com/kubesphere/ks-installer/releases/download/v3.3.1-rc.1/kubesphere-installer.yaml
kubectl apply -f https://github.com/kubesphere/ks-installer/releases/download/v3.3.1-rc.1/cluster-configuration.yaml
kubectl apply -f https://github.com/kubesphere/ks-installer/releases/download/v3.3.1-rc.2/kubesphere-installer.yaml
kubectl apply -f https://github.com/kubesphere/ks-installer/releases/download/v3.3.1-rc.2/cluster-configuration.yaml
```

Then inspect the logs of installation.
Expand Down Expand Up @@ -113,7 +113,7 @@ Deploy the new version of ks-installer:
```bash
# Notice: ks-installer will automatically migrate the configuration. Do not modify the cluster configuration by yourself.

kubectl apply -f https://github.com/kubesphere/ks-installer/releases/download/v3.3.1-rc.1/kubesphere-installer.yaml
kubectl apply -f https://github.com/kubesphere/ks-installer/releases/download/v3.3.1-rc.2/kubesphere-installer.yaml
```

> Note: If your KubeSphere version is v3.1.x or eariler, please upgrade to v3.2.x first.
6 changes: 3 additions & 3 deletions README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ glusterfs kubernetes.io/glusterfs 3d4h
### 最小化快速部署

```bash
kubectl apply -f https://github.com/kubesphere/ks-installer/releases/download/v3.3.1-rc.1/kubesphere-installer.yaml
kubectl apply -f https://github.com/kubesphere/ks-installer/releases/download/v3.3.1-rc.1/cluster-configuration.yaml
kubectl apply -f https://github.com/kubesphere/ks-installer/releases/download/v3.3.1-rc.2/kubesphere-installer.yaml
kubectl apply -f https://github.com/kubesphere/ks-installer/releases/download/v3.3.1-rc.2/cluster-configuration.yaml

# 查看部署进度及日志
$ kubectl logs -n kubesphere-system $(kubectl get pod -n kubesphere-system -l app=ks-installer -o jsonpath='{.items[0].metadata.name}') -f
Expand Down Expand Up @@ -113,7 +113,7 @@ kubectl logs -n kubesphere-system $(kubectl get pod -n kubesphere-system -l app=
```bash
# 注意: ks-installer会自动迁移cluster-configuration. 请勿自行修改.

kubectl apply -f https://github.com/kubesphere/ks-installer/releases/download/v3.3.1-rc.1/kubesphere-installer.yaml
kubectl apply -f https://github.com/kubesphere/ks-installer/releases/download/v3.3.1-rc.2/kubesphere-installer.yaml
```


Expand Down
2 changes: 1 addition & 1 deletion controller/installRunner.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"name": "ks-installer",
"namespace": "kubesphere-system",
"labels": {
"version": "v3.3.1-rc.1"
"version": "v3.3.1-rc.2"
},
},
}
Expand Down
2 changes: 1 addition & 1 deletion deploy/cluster-configuration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
name: ks-installer
namespace: kubesphere-system
labels:
version: v3.3.1-rc.1
version: v3.3.1-rc.2
spec:
persistence:
storageClass: "" # If there is no default StorageClass in your cluster, you need to specify an existing StorageClass here.
Expand Down
2 changes: 1 addition & 1 deletion deploy/kubesphere-installer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ spec:
serviceAccountName: ks-installer
containers:
- name: installer
image: kubesphere/ks-installer:v3.3.1-rc.1
image: kubesphere/ks-installer:v3.3.1-rc.2
imagePullPolicy: "Always"
resources:
limits:
Expand Down
8 changes: 4 additions & 4 deletions roles/download/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ ks_version: >-
{%- if dev_tag is defined and dev_tag != "" -%}
{{ dev_tag }}
{%- else -%}
v3.3.1-rc.1
v3.3.1-rc.2
{%- endif %}
#KubeSphere:
Expand Down Expand Up @@ -116,9 +116,9 @@ snapshot_controller_tag: "v4.0.0"

# ks-devops
ks_devops_registry: "{{ base_repo }}{{ namespace_override | default('kubesphere') }}"
ks_devops_controller_tag: "{{ ks_version }}"
ks_devops_apiserver_tag: "{{ ks_version }}"
ks_devops_tools_tag: "{{ ks_version }}"
ks_devops_controller_tag: "v3.3.1-rc.1"
ks_devops_apiserver_tag: "v3.3.1-rc.1"
ks_devops_tools_tag: "v3.3.1-rc.1"

#jenkins:
jenkins_repo: "{{ base_repo }}{{ namespace_override | default('kubesphere') }}/ks-jenkins"
Expand Down

0 comments on commit a1980ee

Please sign in to comment.