Skip to content

Commit 1cde071

Browse files
committed
version bump v1.14.0
1 parent b52d703 commit 1cde071

File tree

8 files changed

+20
-20
lines changed

8 files changed

+20
-20
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ helm repo add kvaps https://kvaps.github.io/charts
6363

6464
```bash
6565
# download example values
66-
curl -LO https://github.com/kvaps/kube-linstor/raw/v1.13.0-1/examples/linstor-db.yaml
66+
curl -LO https://github.com/kvaps/kube-linstor/raw/v1.14.0/examples/linstor-db.yaml
6767

6868
# install release
6969
helm install linstor-db kvaps/stolon \
@@ -118,10 +118,10 @@ helm repo add kvaps https://kvaps.github.io/charts
118118

119119
```bash
120120
# download example values
121-
curl -LO https://github.com/kvaps/kube-linstor/raw/v1.13.0-1/examples/linstor.yaml
121+
curl -LO https://github.com/kvaps/kube-linstor/raw/v1.14.0/examples/linstor.yaml
122122

123123
# install release
124-
helm install linstor kvaps/linstor --version 1.13.0-1 \
124+
helm install linstor kvaps/linstor --version 1.14.0 \
125125
--namespace linstor \
126126
-f linstor.yaml
127127
```

dockerfiles/linstor-controller/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM debian:buster as builder
22

3-
ARG VERSION=1.13.0
3+
ARG VERSION=1.14.0
44

55
ENV DEBIAN_FRONTEND noninteractive
66
RUN apt-get update \
@@ -23,8 +23,8 @@ RUN dpkg-buildpackage -us -uc
2323

2424
FROM debian:buster as client-builder
2525

26-
ARG API_VERSION=1.8.0
27-
ARG CLIENT_VERSION=1.8.0
26+
ARG API_VERSION=1.9.0
27+
ARG CLIENT_VERSION=1.9.0
2828

2929
ENV DEBIAN_FRONTEND noninteractive
3030
RUN apt-get update \

dockerfiles/linstor-csi/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM golang:1.15 as builder
22

33
RUN git clone https://github.com/linbit/linstor-csi/ /usr/local/go/linstor-csi/ \
44
&& cd /usr/local/go/linstor-csi \
5-
&& git reset --hard v0.13.0 \
5+
&& git reset --hard v0.13.1 \
66
&& make -f container.mk staticrelease \
77
&& mv ./linstor-csi-linux-amd64 /
88

dockerfiles/linstor-satellite/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM debian:buster as builder
22

3-
ARG VERSION=1.13.0
3+
ARG VERSION=1.14.0
44

55
ENV DEBIAN_FRONTEND noninteractive
66
RUN apt-get update \
@@ -23,7 +23,7 @@ RUN dpkg-buildpackage -us -uc
2323

2424
FROM debian:buster as utils-builder
2525

26-
ARG UTILS_VERSION=9.18.0
26+
ARG UTILS_VERSION=9.18.2
2727

2828
ENV DEBIAN_FRONTEND noninteractive
2929
RUN apt-get update \
@@ -61,7 +61,7 @@ RUN dpkg-buildpackage -us -uc
6161

6262
FROM debian:buster as reactor-builder
6363

64-
ARG REACTOR_VERSION=0.4.0
64+
ARG REACTOR_VERSION=0.4.3
6565

6666
ENV DEBIAN_FRONTEND noninteractive
6767
RUN apt-get update \

dockerfiles/linstor-stork/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ RUN apt-get update \
77

88
RUN git clone https://github.com/libopenstorage/stork /go/src/github.com/libopenstorage/stork \
99
&& cd /go/src/github.com/libopenstorage/stork \
10-
&& git reset --hard v2.6.3
10+
&& git reset --hard v2.6.4
1111

12-
RUN GO111MODULE=on go get -u -d github.com/libopenstorage/stork@v2.6.3
12+
RUN GO111MODULE=on go get -u -d github.com/libopenstorage/stork@v2.6.4
1313
WORKDIR /go/src/github.com/libopenstorage/stork
1414

1515
RUN make vendor

docs/UPGRADE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Anyway you can perform upgrade by simple replacing resources in your Kubernetes
4747
***Helm way:***
4848

4949
```bash
50-
helm upgrade linstor kvaps/linstor --version 1.13.0-1 --namespace linstor -f linstor.yaml
50+
helm upgrade linstor kvaps/linstor --version 1.14.0 --namespace linstor -f linstor.yaml
5151
```
5252

5353
***Templated manifests:***

helm/kube-linstor/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: linstor
22
description: Containerized LINSTOR SDS for Kubernetes, ready for production use.
3-
version: 1.13.0-1
4-
appVersion: 1.13.0
3+
version: 1.14.0
4+
appVersion: 1.14.0
55
icon: https://hsto.org/getpro/habr/post_images/e47/594/c07/e47594c0721332fb46493d20339bb1be.png
66
keywords:
77
- linstor

helm/kube-linstor/values.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ controller:
77
enabled: true
88
image:
99
repository: ghcr.io/kvaps/linstor-controller
10-
tag: v1.13.0-1
10+
tag: v1.14.0
1111
pullPolicy: IfNotPresent
1212
pullSecrets:
1313
- name: regsecret
@@ -81,7 +81,7 @@ satellite:
8181
enabled: true
8282
image:
8383
repository: ghcr.io/kvaps/linstor-satellite
84-
tag: v1.13.0-1
84+
tag: v1.14.0
8585
pullPolicy: IfNotPresent
8686
pullSecrets:
8787
- name: regsecret
@@ -192,7 +192,7 @@ csi:
192192
- name: regsecret
193193
linstorCsiPlugin:
194194
repository: ghcr.io/kvaps/linstor-csi
195-
tag: v1.13.0-1
195+
tag: v1.14.0
196196
pullPolicy: IfNotPresent
197197
csiProvisioner:
198198
repository: k8s.gcr.io/sig-storage/csi-provisioner
@@ -246,7 +246,7 @@ haController:
246246
enabled: true
247247
image:
248248
repository: ghcr.io/kvaps/linstor-ha-controller
249-
tag: v1.13.0-1
249+
tag: v1.14.0
250250
pullPolicy: IfNotPresent
251251
pullSecrets:
252252
- name: regsecret
@@ -271,7 +271,7 @@ stork:
271271
enabled: true
272272
image:
273273
repository: ghcr.io/kvaps/linstor-stork
274-
tag: v1.13.0-1
274+
tag: v1.14.0
275275
pullPolicy: IfNotPresent
276276
pullSecrets:
277277
- name: regsecret

0 commit comments

Comments
 (0)