File tree 11 files changed +13
-13
lines changed
11 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM golang:1.15.3-alpine3.12
2
2
WORKDIR /build
3
3
4
4
# Take the current space cloud version as a argument
5
- ARG SC_VERSION=0.21.2
5
+ ARG SC_VERSION=0.21.3
6
6
7
7
# Copy all the source files
8
8
COPY . .
@@ -16,7 +16,7 @@ RUN GOOS=linux CGO_ENABLED=0 go build -a -ldflags '-s -w -extldflags "-static"'
16
16
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
17
17
18
18
FROM alpine:3.12
19
- ARG SC_VERSION=0.21.2
19
+ ARG SC_VERSION=0.21.3
20
20
21
21
RUN apk --no-cache add ca-certificates
22
22
Original file line number Diff line number Diff line change 5
5
)
6
6
7
7
// BuildVersion is the current version of Space Cloud
8
- const BuildVersion = "0.21.2 "
8
+ const BuildVersion = "0.21.3 "
9
9
10
10
// DLQEventTriggerPrefix used as suffix for DLQ event trigger
11
11
const DLQEventTriggerPrefix = "dlq_"
Original file line number Diff line number Diff line change 1
1
version : " 3.9"
2
2
services :
3
3
gateway :
4
- image : " spaceuptech/gateway:0.21.2 "
4
+ image : " spaceuptech/gateway:0.21.3 "
5
5
pull_policy : " if_not_present" # other values never, if_not_present
6
6
restart : " always" # other values no, on-failure
7
7
environment :
Original file line number Diff line number Diff line change 1
1
version : ' 3.9'
2
2
services :
3
3
gateway :
4
- image : " spaceuptech/gateway:0.21.2 "
4
+ image : " spaceuptech/gateway:0.21.3 "
5
5
pull_policy : " if_not_present" # other values never, if_not_present
6
6
restart : " always" # other values no, on-failure
7
7
environment :
Original file line number Diff line number Diff line change 1
1
version : ' 3.9'
2
2
services :
3
3
gateway :
4
- image : " spaceuptech/gateway:0.21.2 "
4
+ image : " spaceuptech/gateway:0.21.3 "
5
5
pull_policy : " if_not_present" # other values never, if_not_present
6
6
restart : " always" # other values no, on-failure
7
7
environment :
Original file line number Diff line number Diff line change 1
1
version : ' 3.9'
2
2
services :
3
3
gateway :
4
- image : " spaceuptech/gateway:0.21.2 "
4
+ image : " spaceuptech/gateway:0.21.3 "
5
5
pull_policy : " if_not_present" # other values never, if_not_present
6
6
restart : " always" # other values no, on-failure
7
7
environment :
Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ spec:
176
176
containers :
177
177
- name : runner
178
178
command : ["./app", "start"]
179
- image : spaceuptech/runner:0.21.2
179
+ image : spaceuptech/runner:0.21.3
180
180
imagePullPolicy : IfNotPresent # IfNotPresent | Always
181
181
env :
182
182
- name : " LOG_LEVEL"
Original file line number Diff line number Diff line change @@ -185,7 +185,7 @@ spec:
185
185
containers :
186
186
- name : gateway
187
187
command : [ "./app", "run" ]
188
- image : spaceuptech/gateway:0.21.2
188
+ image : spaceuptech/gateway:0.21.3
189
189
imagePullPolicy : IfNotPresent # IfNotPresent | Always
190
190
livenessProbe :
191
191
exec :
Original file line number Diff line number Diff line change 1
1
package model
2
2
3
3
// Version represents the current runner version
4
- const Version string = "0.21.2 "
4
+ const Version string = "0.21.3 "
Original file line number Diff line number Diff line change @@ -32,4 +32,4 @@ const (
32
32
)
33
33
34
34
// Version version of space cli
35
- const Version string = "0.21.2 "
35
+ const Version string = "0.21.3 "
Original file line number Diff line number Diff line change @@ -20,9 +20,9 @@ func TestGetChartDownloadURL(t *testing.T) {
20
20
name : "Right URL and version" ,
21
21
args : args {
22
22
url : model .HelmSpaceCloudChartDownloadURL ,
23
- version : "0.21.2 " ,
23
+ version : "0.21.3 " ,
24
24
},
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" ,
26
26
},
27
27
}
28
28
for _ , tt := range tests {
You can’t perform that action at this time.
0 commit comments