From 40fab55f27081b87303dd45cf019195f19cac06d Mon Sep 17 00:00:00 2001 From: Mengxin Liu Date: Fri, 27 Dec 2019 09:41:16 +0800 Subject: [PATCH] update version --- VERSION | 2 +- yamls/kube-ovn-ipv6.yaml | 8 ++++---- yamls/kube-ovn.yaml | 8 ++++---- yamls/ovn-ha.yaml | 4 ++-- yamls/ovn.yaml | 4 ++-- yamls/webhook.yaml | 2 +- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/VERSION b/VERSION index bf057dbfd9d..7095979e28b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v0.10.0 +v1.0.0-pre diff --git a/yamls/kube-ovn-ipv6.yaml b/yamls/kube-ovn-ipv6.yaml index 3754e8d9861..1de8268ae42 100644 --- a/yamls/kube-ovn-ipv6.yaml +++ b/yamls/kube-ovn-ipv6.yaml @@ -38,7 +38,7 @@ spec: hostNetwork: true containers: - name: kube-ovn-controller - image: "index.alauda.cn/alaudak8s/kube-ovn-controller:v0.10.0" + image: "index.alauda.cn/alaudak8s/kube-ovn-controller:v1.0.0-pre" imagePullPolicy: IfNotPresent command: - /kube-ovn/start-controller.sh @@ -109,7 +109,7 @@ spec: hostPID: true initContainers: - name: install-cni - image: "index.alauda.cn/alaudak8s/kube-ovn-cni:v0.10.0" + image: "index.alauda.cn/alaudak8s/kube-ovn-cni:v1.0.0-pre" imagePullPolicy: IfNotPresent command: ["/kube-ovn/install-cni.sh"] securityContext: @@ -122,7 +122,7 @@ spec: name: cni-bin containers: - name: cni-server - image: "index.alauda.cn/alaudak8s/kube-ovn-cni:v0.10.0" + image: "index.alauda.cn/alaudak8s/kube-ovn-cni:v1.0.0-pre" command: ["sh", "/kube-ovn/start-cniserver.sh"] args: - --enable-mirror=false @@ -205,7 +205,7 @@ spec: hostPID: true containers: - name: pinger - image: "index.alauda.cn/alaudak8s/kube-ovn-pinger:v0.10.0" + image: "index.alauda.cn/alaudak8s/kube-ovn-pinger:v1.0.0-pre" imagePullPolicy: IfNotPresent securityContext: runAsUser: 0 diff --git a/yamls/kube-ovn.yaml b/yamls/kube-ovn.yaml index 170467e7334..fbfff499aef 100644 --- a/yamls/kube-ovn.yaml +++ b/yamls/kube-ovn.yaml @@ -38,7 +38,7 @@ spec: hostNetwork: true containers: - name: kube-ovn-controller - image: "index.alauda.cn/alaudak8s/kube-ovn-controller:v0.10.0" + image: "index.alauda.cn/alaudak8s/kube-ovn-controller:v1.0.0-pre" imagePullPolicy: IfNotPresent command: - /kube-ovn/start-controller.sh @@ -112,7 +112,7 @@ spec: hostPID: true initContainers: - name: install-cni - image: "index.alauda.cn/alaudak8s/kube-ovn-cni:v0.10.0" + image: "index.alauda.cn/alaudak8s/kube-ovn-cni:v1.0.0-pre" imagePullPolicy: IfNotPresent command: ["/kube-ovn/install-cni.sh"] securityContext: @@ -125,7 +125,7 @@ spec: name: cni-bin containers: - name: cni-server - image: "index.alauda.cn/alaudak8s/kube-ovn-cni:v0.10.0" + image: "index.alauda.cn/alaudak8s/kube-ovn-cni:v1.0.0-pre" imagePullPolicy: IfNotPresent command: - sh @@ -215,7 +215,7 @@ spec: hostPID: true containers: - name: pinger - image: "index.alauda.cn/alaudak8s/kube-ovn-pinger:v0.10.0" + image: "index.alauda.cn/alaudak8s/kube-ovn-pinger:v1.0.0-pre" imagePullPolicy: IfNotPresent securityContext: runAsUser: 0 diff --git a/yamls/ovn-ha.yaml b/yamls/ovn-ha.yaml index 70a931582f2..49bfa950174 100644 --- a/yamls/ovn-ha.yaml +++ b/yamls/ovn-ha.yaml @@ -160,7 +160,7 @@ spec: hostNetwork: true containers: - name: ovn-central - image: "index.alauda.cn/alaudak8s/kube-ovn-db:v0.10.0" + image: "index.alauda.cn/alaudak8s/kube-ovn-db:v1.0.0-pre" imagePullPolicy: IfNotPresent securityContext: capabilities: @@ -257,7 +257,7 @@ spec: hostPID: true containers: - name: openvswitch - image: "index.alauda.cn/alaudak8s/kube-ovn-node:v0.10.0" + image: "index.alauda.cn/alaudak8s/kube-ovn-node:v1.0.0-pre" imagePullPolicy: IfNotPresent securityContext: runAsUser: 0 diff --git a/yamls/ovn.yaml b/yamls/ovn.yaml index 2cf8e5f02e8..1dbab6f0fc3 100644 --- a/yamls/ovn.yaml +++ b/yamls/ovn.yaml @@ -160,7 +160,7 @@ spec: hostNetwork: true containers: - name: ovn-central - image: "index.alauda.cn/alaudak8s/kube-ovn-db:v0.10.0" + image: "index.alauda.cn/alaudak8s/kube-ovn-db:v1.0.0-pre" imagePullPolicy: IfNotPresent securityContext: capabilities: @@ -255,7 +255,7 @@ spec: hostPID: true containers: - name: openvswitch - image: "index.alauda.cn/alaudak8s/kube-ovn-node:v0.10.0" + image: "index.alauda.cn/alaudak8s/kube-ovn-node:v1.0.0-pre" imagePullPolicy: IfNotPresent securityContext: runAsUser: 0 diff --git a/yamls/webhook.yaml b/yamls/webhook.yaml index 82ce9a86096..e67f5959da7 100644 --- a/yamls/webhook.yaml +++ b/yamls/webhook.yaml @@ -38,7 +38,7 @@ spec: hostNetwork: true containers: - name: kube-ovn-webhook - image: "index.alauda.cn/alaudak8s/kube-ovn-webhook:v0.10.0" + image: "index.alauda.cn/alaudak8s/kube-ovn-webhook:v1.0.0-pre" imagePullPolicy: IfNotPresent command: - /kube-ovn/start-webhook.sh