Skip to content

Commit d767032

Browse files
authored
Merge pull request #1550 from YourTechBud/bumped-version
bumped the version
2 parents 5588f1b + 787f23b commit d767032

File tree

11 files changed

+13
-13
lines changed

11 files changed

+13
-13
lines changed

gateway/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM golang:1.15.3-alpine3.12
22
WORKDIR /build
33

44
# Take the current space cloud version as a argument
5-
ARG SC_VERSION=0.21.2
5+
ARG SC_VERSION=0.21.3
66

77
# Copy all the source files
88
COPY . .
@@ -16,7 +16,7 @@ RUN GOOS=linux CGO_ENABLED=0 go build -a -ldflags '-s -w -extldflags "-static"'
1616
RUN echo $SC_VERSION && wget https://storage.googleapis.com/space-cloud/mission-control/mission-control-v$SC_VERSION.zip && unzip mission-control-v$SC_VERSION.zip
1717

1818
FROM alpine:3.12
19-
ARG SC_VERSION=0.21.2
19+
ARG SC_VERSION=0.21.3
2020

2121
RUN apk --no-cache add ca-certificates
2222

gateway/utils/constants.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
)
66

77
// BuildVersion is the current version of Space Cloud
8-
const BuildVersion = "0.21.2"
8+
const BuildVersion = "0.21.3"
99

1010
// DLQEventTriggerPrefix used as suffix for DLQ event trigger
1111
const DLQEventTriggerPrefix = "dlq_"

install-manifests/docker/mongo/docker-compose.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: "3.9"
22
services:
33
gateway:
4-
image: "spaceuptech/gateway:0.21.2"
4+
image: "spaceuptech/gateway:0.21.3"
55
pull_policy: "if_not_present" # other values never, if_not_present
66
restart: "always" # other values no, on-failure
77
environment:

install-manifests/docker/mysql/docker-compose.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3.9'
22
services:
33
gateway:
4-
image: "spaceuptech/gateway:0.21.2"
4+
image: "spaceuptech/gateway:0.21.3"
55
pull_policy: "if_not_present" # other values never, if_not_present
66
restart: "always" # other values no, on-failure
77
environment:

install-manifests/docker/postgres/docker-compose.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3.9'
22
services:
33
gateway:
4-
image: "spaceuptech/gateway:0.21.2"
4+
image: "spaceuptech/gateway:0.21.3"
55
pull_policy: "if_not_present" # other values never, if_not_present
66
restart: "always" # other values no, on-failure
77
environment:

install-manifests/docker/sql-server/docker-compose.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3.9'
22
services:
33
gateway:
4-
image: "spaceuptech/gateway:0.21.2"
4+
image: "spaceuptech/gateway:0.21.3"
55
pull_policy: "if_not_present" # other values never, if_not_present
66
restart: "always" # other values no, on-failure
77
environment:

install-manifests/kubernetes/04-runner.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ spec:
176176
containers:
177177
- name: runner
178178
command: ["./app", "start"]
179-
image: spaceuptech/runner:0.21.2
179+
image: spaceuptech/runner:0.21.3
180180
imagePullPolicy: IfNotPresent # IfNotPresent | Always
181181
env:
182182
- name: "LOG_LEVEL"

install-manifests/kubernetes/05-gateway.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ spec:
185185
containers:
186186
- name: gateway
187187
command: [ "./app", "run" ]
188-
image: spaceuptech/gateway:0.21.2
188+
image: spaceuptech/gateway:0.21.3
189189
imagePullPolicy: IfNotPresent # IfNotPresent | Always
190190
livenessProbe:
191191
exec:

runner/model/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
package model
22

33
// Version represents the current runner version
4-
const Version string = "0.21.2"
4+
const Version string = "0.21.3"

space-cli/cmd/model/constants.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ const (
3232
)
3333

3434
// Version version of space cli
35-
const Version string = "0.21.2"
35+
const Version string = "0.21.3"

space-cli/cmd/utils/versioning_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ func TestGetChartDownloadURL(t *testing.T) {
2020
name: "Right URL and version",
2121
args: args{
2222
url: model.HelmSpaceCloudChartDownloadURL,
23-
version: "0.21.2",
23+
version: "0.21.3",
2424
},
25-
want: "https://storage.googleapis.com/space-cloud/helm/space-cloud/space-cloud-0.21.2.tgz",
25+
want: "https://storage.googleapis.com/space-cloud/helm/space-cloud/space-cloud-0.21.3.tgz",
2626
},
2727
}
2828
for _, tt := range tests {

0 commit comments

Comments
 (0)