Skip to content

Commit a892de2

Browse files
authored
initial commit (#1545)
1 parent 7f4a8fa commit a892de2

File tree

13 files changed

+31
-16
lines changed

13 files changed

+31
-16
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.1
5+
ARG SC_VERSION=0.21.2
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.1
19+
ARG SC_VERSION=0.21.2
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.1"
8+
const BuildVersion = "0.21.2"
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.1"
4+
image: "spaceuptech/gateway:0.21.2"
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.1"
4+
image: "spaceuptech/gateway:0.21.2"
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.1"
4+
image: "spaceuptech/gateway:0.21.2"
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.1"
4+
image: "spaceuptech/gateway:0.21.2"
55
pull_policy: "if_not_present" # other values never, if_not_present
66
restart: "always" # other values no, on-failure
77
environment:

install-manifests/helm/index.yaml

+16-1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,21 @@ entries:
5858
- https://storage.googleapis.com/space-cloud/helm/postgres/postgres-0.1.0.tgz
5959
version: 0.1.0
6060
space-cloud:
61+
- apiVersion: v3
62+
appVersion: 0.21.2
63+
created: "2021-03-23T14:50:26.9208374+05:30"
64+
description: Helm Chart to install Space Cloud
65+
digest: 566cbbd7cb3bdbb5080ef048171a8087bab9036b26ae9b3a1016fb8fea6b4511
66+
home: https://spaceuptech.com/
67+
keywords:
68+
- baaS
69+
name: space-cloud
70+
sources:
71+
- https://github.com/spaceuptech/space-cloud/tree/master/install-manifests/helm/space-cloud
72+
type: application
73+
urls:
74+
- space-cloud-0.21.2.tgz
75+
version: 0.21.2
6176
- apiVersion: v3
6277
appVersion: 0.21.1
6378
created: "2021-03-15T18:22:43.8366512+05:30"
@@ -118,4 +133,4 @@ entries:
118133
urls:
119134
- https://storage.googleapis.com/space-cloud/helm/sqlserver/sqlserver-0.1.0.tgz
120135
version: 0.1.0
121-
generated: "2021-03-15T18:22:43.8289356+05:30"
136+
generated: "2021-03-23T14:50:26.9022297+05:30"

install-manifests/helm/space-cloud/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v3
22
name: space-cloud
3-
version: 0.21.1 # Chart version
4-
appVersion: 0.21.1 # Space Cloud version
3+
version: 0.21.2 # Chart version
4+
appVersion: 0.21.2 # Space Cloud version
55
description: Helm Chart to install Space Cloud
66
type: application
77
keywords:

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.1
179+
image: spaceuptech/runner:0.21.2
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.1
188+
image: spaceuptech/gateway:0.21.2
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.1"
4+
const Version string = "0.21.2"

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.1"
35+
const Version string = "0.21.2"

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.1",
23+
version: "0.21.2",
2424
},
25-
want: "https://storage.googleapis.com/space-cloud/helm/space-cloud/space-cloud-0.21.1.tgz",
25+
want: "https://storage.googleapis.com/space-cloud/helm/space-cloud/space-cloud-0.21.2.tgz",
2626
},
2727
}
2828
for _, tt := range tests {

0 commit comments

Comments
 (0)