Skip to content

Commit

Permalink
Longhorn v0.3.3-rc1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
yasker committed Jan 12, 2019
1 parent 151d24a commit 1ccddce
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,13 +265,13 @@ See [here](./docs/troubleshooting.md) for the troubleshooting guide.

2. Create the uninstallation job to cleanly purge CRDs from the system and wait for success:
```
kubectl create -f https://raw.githubusercontent.com/rancher/longhorn/master/deploy/uninstall.yaml
kubectl create -f https://raw.githubusercontent.com/rancher/longhorn/master/uninstall/uninstall.yaml
kubectl -n longhorn-system get job/longhorn-uninstall -w
```

Example output:
```
$ kubectl create -f https://raw.githubusercontent.com/rancher/longhorn/master/deploy/uninstall.yaml
$ kubectl create -f https://raw.githubusercontent.com/rancher/longhorn/master/uninstall/uninstall.yaml
job.batch/longhorn-uninstall created
$ kubectl -n longhorn-system get job/longhorn-uninstall -w
NAME DESIRED SUCCESSFUL AGE
Expand Down
14 changes: 7 additions & 7 deletions deploy/longhorn.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ spec:
spec:
containers:
- name: longhorn-manager
image: rancher/longhorn-manager:v0.3.2
image: rancher/longhorn-manager:v0.3.3-rc1
imagePullPolicy: Always
securityContext:
privileged: true
Expand All @@ -187,9 +187,9 @@ spec:
- -d
- daemon
- --engine-image
- rancher/longhorn-engine:v0.3.0
- rancher/longhorn-engine:v0.3.3-rc1
- --manager-image
- rancher/longhorn-manager:v0.3.2
- rancher/longhorn-manager:v0.3.3-rc1
- --service-account
- longhorn-service-account
ports:
Expand Down Expand Up @@ -266,7 +266,7 @@ spec:
spec:
containers:
- name: longhorn-ui
image: rancher/longhorn-ui:v0.3.2
image: rancher/longhorn-ui:v0.3.3-rc1
ports:
- containerPort: 8000
env:
Expand Down Expand Up @@ -305,18 +305,18 @@ spec:
spec:
initContainers:
- name: wait-longhorn-manager
image: rancher/longhorn-manager:v0.3.2
image: rancher/longhorn-manager:v0.3.3-rc1
command: ['sh', '-c', 'while [ $(curl -m 1 -s -o /dev/null -w "%{http_code}" http://longhorn-backend:9500/v1) != "200" ]; do echo waiting; sleep 2; done']
containers:
- name: longhorn-driver-deployer
image: rancher/longhorn-manager:v0.3.2
image: rancher/longhorn-manager:v0.3.3-rc1
imagePullPolicy: Always
command:
- longhorn-manager
- -d
- deploy-driver
- --manager-image
- rancher/longhorn-manager:v0.3.2
- rancher/longhorn-manager:v0.3.3-rc1
- --manager-url
- http://longhorn-backend:9500/v1
# manually choose "flexvolume" or "csi"
Expand Down
File renamed without changes.

0 comments on commit 1ccddce

Please sign in to comment.