Skip to content

Commit bc79a9b

Browse files
committed
update linker flags
1 parent f0e8787 commit bc79a9b

5 files changed

Lines changed: 16 additions & 14 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ RUN case "$TARGETPLATFORM" in \
3232
*) echo "Unsupported platform: $TARGETPLATFORM" && exit 1 ;; \
3333
esac && \
3434
CGO_ENABLED=0 GOOS=linux GOARCH=$GOARCH go build -a -o /outerspace-go \
35-
-ldflags "-s -w -X main.Version=${VERSION} -X main.BuildTime=$(TZ=UTC date +%Y-%m-%dT%H:%M:%S%z)"
35+
-ldflags "-w -X main.Version=${VERSION} -X main.BuildTime=$(TZ=UTC date +%Y-%m-%dT%H:%M:%S%z)"
3636

3737
################################################################################
3838
# RELEASE IMAGE

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.1.4
1+
v1.1.5

k8s/client-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
spec:
1717
containers:
1818
- name: outerspace-client
19-
image: ghcr.io/speedscale/outerspace-go-client:v1.1.4
19+
image: ghcr.io/speedscale/outerspace-go-client:v1.1.5
2020
env:
2121
- name: HTTP_SERVER_ADDR
2222
value: "http://outerspace-server:80"

k8s/kustomization.yaml

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,18 @@ metadata:
55
name: outerspace-base
66

77
resources:
8-
- server-deployment.yaml
9-
- server-service.yaml
10-
- client-deployment.yaml
8+
- server-deployment.yaml
9+
- server-service.yaml
10+
- client-deployment.yaml
1111

12-
commonLabels:
13-
app.kubernetes.io/name: outerspace
14-
app.kubernetes.io/part-of: outerspace-system
1512

1613
images:
17-
- name: ghcr.io/speedscale/outerspace-go
18-
newTag: v1.1.4
19-
- name: ghcr.io/speedscale/outerspace-go-client
20-
newTag: v1.1.4
14+
- name: ghcr.io/speedscale/outerspace-go
15+
newTag: v1.1.5
16+
- name: ghcr.io/speedscale/outerspace-go-client
17+
newTag: v1.1.5
18+
labels:
19+
- includeSelectors: true
20+
pairs:
21+
app.kubernetes.io/name: outerspace
22+
app.kubernetes.io/part-of: outerspace-system

k8s/server-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
spec:
1717
containers:
1818
- name: outerspace-server
19-
image: ghcr.io/speedscale/outerspace-go:v1.1.4
19+
image: ghcr.io/speedscale/outerspace-go:v1.1.5
2020
ports:
2121
- containerPort: 8080
2222
name: http

0 commit comments

Comments
 (0)