Skip to content

Commit 706cdfc

Browse files
committed
release v1.0.1
1 parent a51a672 commit 706cdfc

9 files changed

Lines changed: 29 additions & 18 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# CHANGELOG
22

3+
## v1.0.1 -- 2020/03/31
4+
5+
This release fix bugs found in v1.0.0
6+
7+
### Bugfix
8+
* Use uuid to fetch lb vips
9+
* Add inactivity_probe back
10+
* Update svc might remove other svc that with same prefix
11+
* IP prefix might be empty
12+
* Enqueue subnet update to add route
13+
314
## v1.0.0 -- 2020/02/27
415

516
Kube-OVN has evolved a year from the first release and the core function set is stable with lots of tests and community feedback.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.0.0
1+
v1.0.1

docs/install.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@ Kube-OVN includes two parts:
2121
`kubectl label node <Node on which to deploy OVN DB> kube-ovn/role=master`
2222
2. Install Kube-OVN related CRDs
2323

24-
`kubectl apply -f https://raw.githubusercontent.com/alauda/kube-ovn/v1.0.0/yamls/crd.yaml`
24+
`kubectl apply -f https://raw.githubusercontent.com/alauda/kube-ovn/v1.0.1/yamls/crd.yaml`
2525
3. Install native OVS and OVN components:
2626

27-
`kubectl apply -f https://raw.githubusercontent.com/alauda/kube-ovn/v1.0.0/yamls/ovn.yaml`
27+
`kubectl apply -f https://raw.githubusercontent.com/alauda/kube-ovn/v1.0.1/yamls/ovn.yaml`
2828
4. Install the Kube-OVN Controller and CNI plugins:
2929

30-
`kubectl apply -f https://raw.githubusercontent.com/alauda/kube-ovn/v1.0.0/yamls/kube-ovn.yaml`
30+
`kubectl apply -f https://raw.githubusercontent.com/alauda/kube-ovn/v1.0.1/yamls/kube-ovn.yaml`
3131

3232
That's all! You can now create some pods and test connectivity.
3333

3434
For high-available ovn db, see [high available](high-available.md)
3535

36-
If you want to enable IPv6 on default subnet and node subnet, please apply https://raw.githubusercontent.com/alauda/kube-ovn/v1.0.0/yamls/kube-ovn-ipv6.yaml on Step 3.
36+
If you want to enable IPv6 on default subnet and node subnet, please apply https://raw.githubusercontent.com/alauda/kube-ovn/v1.0.1/yamls/kube-ovn-ipv6.yaml on Step 3.
3737

3838
## More Configuration
3939

@@ -82,7 +82,7 @@ You can use `--default-cidr` flags below to config default Pod CIDR or create a
8282
1. Remove Kubernetes resources:
8383
8484
```bash
85-
wget https://raw.githubusercontent.com/alauda/kube-ovn/v1.0.0/dist/images/cleanup.sh
85+
wget https://raw.githubusercontent.com/alauda/kube-ovn/v1.0.1/dist/images/cleanup.sh
8686
bash cleanup.sh
8787
```
8888

docs/ipv6.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
Through Kube-OVN does support both protocol subnets coexist in a cluster, Kubernetes control plan now only support one protocol. So you will lost some ability like probe and service discovery if you use a protocol other than the kubernetes control plan. We recommend you use only one same ip protocol that same with kubernetes control plan.
44

5-
To enable IPv6 support you need to modify the installation yaml to specify the default subnet and node subnet cidrBlock and gateway with a ipv6 format. You can apply this [v6 version yaml](https://raw.githubusercontent.com/alauda/kube-ovn/v1.0.0/yamls/kube-ovn-ipv6.yaml) at [installation step 3](install.md#to-install) for a quick start.
5+
To enable IPv6 support you need to modify the installation yaml to specify the default subnet and node subnet cidrBlock and gateway with a ipv6 format. You can apply this [v6 version yaml](https://raw.githubusercontent.com/alauda/kube-ovn/v1.0.1/yamls/kube-ovn-ipv6.yaml) at [installation step 3](install.md#to-install) for a quick start.

yamls/kube-ovn-ipv6.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ spec:
110110
hostPID: true
111111
initContainers:
112112
- name: install-cni
113-
image: "index.alauda.cn/alaudak8s/kube-ovn-cni:v1.0.0"
113+
image: "index.alauda.cn/alaudak8s/kube-ovn-cni:v1.0.1"
114114
imagePullPolicy: IfNotPresent
115115
command: ["/kube-ovn/install-cni.sh"]
116116
securityContext:
@@ -123,7 +123,7 @@ spec:
123123
name: cni-bin
124124
containers:
125125
- name: cni-server
126-
image: "index.alauda.cn/alaudak8s/kube-ovn-cni:v1.0.0"
126+
image: "index.alauda.cn/alaudak8s/kube-ovn-cni:v1.0.1"
127127
command: ["sh", "/kube-ovn/start-cniserver.sh"]
128128
args:
129129
- --enable-mirror=false
@@ -206,7 +206,7 @@ spec:
206206
hostPID: true
207207
containers:
208208
- name: pinger
209-
image: "index.alauda.cn/alaudak8s/kube-ovn-pinger:v1.0.0"
209+
image: "index.alauda.cn/alaudak8s/kube-ovn-pinger:v1.0.1"
210210
imagePullPolicy: IfNotPresent
211211
securityContext:
212212
runAsUser: 0

yamls/kube-ovn.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ spec:
3939
hostNetwork: true
4040
containers:
4141
- name: kube-ovn-controller
42-
image: "index.alauda.cn/alaudak8s/kube-ovn-controller:v1.0.0"
42+
image: "index.alauda.cn/alaudak8s/kube-ovn-controller:v1.0.1"
4343
imagePullPolicy: IfNotPresent
4444
command:
4545
- /kube-ovn/start-controller.sh
@@ -108,7 +108,7 @@ spec:
108108
hostPID: true
109109
initContainers:
110110
- name: install-cni
111-
image: "index.alauda.cn/alaudak8s/kube-ovn-cni:v1.0.0"
111+
image: "index.alauda.cn/alaudak8s/kube-ovn-cni:v1.0.1"
112112
imagePullPolicy: IfNotPresent
113113
command: ["/kube-ovn/install-cni.sh"]
114114
securityContext:
@@ -121,7 +121,7 @@ spec:
121121
name: cni-bin
122122
containers:
123123
- name: cni-server
124-
image: "index.alauda.cn/alaudak8s/kube-ovn-cni:v1.0.0"
124+
image: "index.alauda.cn/alaudak8s/kube-ovn-cni:v1.0.1"
125125
imagePullPolicy: IfNotPresent
126126
command:
127127
- sh
@@ -211,7 +211,7 @@ spec:
211211
hostPID: true
212212
containers:
213213
- name: pinger
214-
image: "index.alauda.cn/alaudak8s/kube-ovn-pinger:v1.0.0"
214+
image: "index.alauda.cn/alaudak8s/kube-ovn-pinger:v1.0.1"
215215
command: ["/kube-ovn/kube-ovn-pinger", "--external-address=114.114.114.114"]
216216
imagePullPolicy: IfNotPresent
217217
securityContext:

yamls/ovn-ha.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ spec:
155155
hostNetwork: true
156156
containers:
157157
- name: ovn-central
158-
image: "index.alauda.cn/alaudak8s/kube-ovn-db:v1.0.0"
158+
image: "index.alauda.cn/alaudak8s/kube-ovn-db:v1.0.1"
159159
imagePullPolicy: IfNotPresent
160160
securityContext:
161161
capabilities:
@@ -253,7 +253,7 @@ spec:
253253
hostPID: true
254254
containers:
255255
- name: openvswitch
256-
image: "index.alauda.cn/alaudak8s/kube-ovn-node:v1.0.0"
256+
image: "index.alauda.cn/alaudak8s/kube-ovn-node:v1.0.1"
257257
imagePullPolicy: IfNotPresent
258258
securityContext:
259259
runAsUser: 0

yamls/ovn.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ spec:
252252
hostPID: true
253253
containers:
254254
- name: openvswitch
255-
image: "index.alauda.cn/alaudak8s/kube-ovn-node:v1.0.0"
255+
image: "index.alauda.cn/alaudak8s/kube-ovn-node:v1.0.1"
256256
imagePullPolicy: IfNotPresent
257257
securityContext:
258258
runAsUser: 0

yamls/webhook.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ spec:
3838
hostNetwork: true
3939
containers:
4040
- name: kube-ovn-webhook
41-
image: "index.alauda.cn/alaudak8s/kube-ovn-webhook:v1.0.0"
41+
image: "index.alauda.cn/alaudak8s/kube-ovn-webhook:v1.0.1"
4242
imagePullPolicy: IfNotPresent
4343
command:
4444
- /kube-ovn/start-webhook.sh

0 commit comments

Comments
 (0)