Skip to content

Commit

Permalink
bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
kvaps committed May 4, 2021
1 parent b867a2d commit a7c7dac
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 14 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ helm repo add kvaps https://kvaps.github.io/charts

```bash
# download example values
curl -LO https://github.com/kvaps/kube-linstor/raw/v1.12.1/examples/linstor-db.yaml
curl -LO https://github.com/kvaps/kube-linstor/raw/v1.12.2/examples/linstor-db.yaml

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

```bash
# download example values
curl -LO https://github.com/kvaps/kube-linstor/raw/v1.12.1/examples/linstor.yaml
curl -LO https://github.com/kvaps/kube-linstor/raw/v1.12.2/examples/linstor.yaml

# install release
helm install linstor kvaps/linstor --version 1.12.1 \
helm install linstor kvaps/linstor --version 1.12.2 \
--namespace linstor \
-f linstor.yaml
```
Expand Down
3 changes: 2 additions & 1 deletion dockerfiles/linstor-controller/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM debian:buster as builder

ARG VERSION=1.12.1
ARG VERSION=1.12.2

ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update \
Expand All @@ -12,6 +12,7 @@ WORKDIR /linstor-server
RUN git checkout v${VERSION}

RUN make debrelease \
&& rm -rf /root/.gradle/caches/ \
&& mv linstor-server-${VERSION}.tar.gz /linstor-server_${VERSION}.orig.tar.gz \
&& tar -C / -xvf /linstor-server_${VERSION}.orig.tar.gz

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/linstor-satellite/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM debian:buster as builder

ARG VERSION=1.12.1
ARG VERSION=1.12.2

ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update \
Expand Down
2 changes: 1 addition & 1 deletion docs/UPGRADE.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Anyway you can perform upgrade by simple replacing resources in your Kubernetes
***Helm way:***

```bash
helm upgrade linstor kvaps/linstor --version 1.12.1 --namespace linstor -f linstor.yaml
helm upgrade linstor kvaps/linstor --version 1.12.2 --namespace linstor -f linstor.yaml
```

***Templated manifests:***
Expand Down
4 changes: 2 additions & 2 deletions helm/kube-linstor/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: linstor
description: Containerized LINSTOR SDS for Kubernetes, ready for production use.
version: 1.12.0
appVersion: 1.12.1
version: 1.12.2
appVersion: 1.12.2
icon: https://hsto.org/getpro/habr/post_images/e47/594/c07/e47594c0721332fb46493d20339bb1be.png
keywords:
- linstor
Expand Down
12 changes: 6 additions & 6 deletions helm/kube-linstor/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ controller:
enabled: true
image:
repository: ghcr.io/kvaps/linstor-controller
tag: v1.12.1
tag: v1.12.2
pullPolicy: IfNotPresent
pullSecrets:
- name: regsecret
Expand Down Expand Up @@ -80,7 +80,7 @@ satellite:
enabled: true
image:
repository: ghcr.io/kvaps/linstor-satellite
tag: v1.12.1
tag: v1.12.2
pullPolicy: IfNotPresent
pullSecrets:
- name: regsecret
Expand Down Expand Up @@ -176,7 +176,7 @@ csi:
- name: regsecret
linstorCsiPlugin:
repository: ghcr.io/kvaps/linstor-csi
tag: v1.12.1
tag: v1.12.2
pullPolicy: IfNotPresent
csiProvisioner:
repository: k8s.gcr.io/sig-storage/csi-provisioner
Expand Down Expand Up @@ -230,7 +230,7 @@ haController:
enabled: true
image:
repository: ghcr.io/kvaps/linstor-ha-controller
tag: v1.12.1
tag: v1.12.2
pullPolicy: IfNotPresent
pullSecrets:
- name: regsecret
Expand All @@ -255,7 +255,7 @@ stork:
enabled: true
image:
repository: ghcr.io/kvaps/linstor-stork
tag: v1.12.1
tag: v1.12.2
pullPolicy: IfNotPresent
pullSecrets:
- name: regsecret
Expand All @@ -274,7 +274,7 @@ storkScheduler:
enabled: true
image:
repository: k8s.gcr.io/kube-scheduler
tag: v1.20.1
tag: v1.20.6
pullPolicy: IfNotPresent
pullSecrets:
- name: regsecret
Expand Down

0 comments on commit a7c7dac

Please sign in to comment.