File tree Expand file tree Collapse file tree 8 files changed +17
-17
lines changed Expand file tree Collapse file tree 8 files changed +17
-17
lines changed Original file line number Diff line number Diff line change @@ -16,9 +16,9 @@ RUN make GOARCH=$TARGETARCH build-network-observer
16
16
FROM --platform=$BUILDPLATFORM node:20.9.0 AS console-builder
17
17
18
18
WORKDIR /skupper-console/
19
- ADD https://github.com/skupperproject/skupper-console/archive/refs/tags/2.0.0-rc1 .tar.gz .
20
- RUN tar -zxf 2.0.0-rc1 .tar.gz
21
- WORKDIR ./skupper-console-2.0.0-rc1
19
+ ADD https://github.com/skupperproject/skupper-console/archive/refs/tags/2.0.0.tar.gz .
20
+ RUN tar -zxf 2.0.0.tar.gz
21
+ WORKDIR ./skupper-console-2.0.0
22
22
RUN yarn install && yarn build
23
23
24
24
FROM --platform=$TARGETPLATFORM registry.access.redhat.com/ubi9-minimal
@@ -34,5 +34,5 @@ USER 10000
34
34
35
35
WORKDIR /app
36
36
COPY --from=builder /go/src/app/network-observer .
37
- COPY --from=console-builder /skupper-console/skupper-console-2.0.0-rc1 /build/ console
37
+ COPY --from=console-builder /skupper-console/skupper-console-2.0.0/build/ console
38
38
ENTRYPOINT ["/app/network-observer"]
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ GOOS ?= linux
8
8
GOARCH ?= amd64
9
9
10
10
REGISTRY := quay.io/skupper
11
- IMAGE_TAG := 2.0.0-rc1
11
+ IMAGE_TAG := 2.0.0
12
12
ROUTER_IMAGE_TAG := 3.2.0
13
13
PLATFORMS ?= linux/amd64,linux/arm64
14
14
CONTAINERFILES := Dockerfile.cli Dockerfile.kube-adaptor Dockerfile.controller Dockerfile.network-observer
Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ apiVersion: v2
2
2
name : network-observer
3
3
description : A Helm chart for the Skupper Network Observer
4
4
type : application
5
- version : 2.0.0-rc1
6
- appVersion : " 2.0.0-rc1 "
5
+ version : 2.0.0
6
+ appVersion : " 2.0.0"
Original file line number Diff line number Diff line change 2
2
3
3
set -Ceu
4
4
5
- IMAGE=" quay.io/skupper/cli:2.0.0-rc1 "
5
+ IMAGE=" quay.io/skupper/cli:2.0.0"
6
6
export INPUT_PATH=" "
7
7
export NAMESPACE=" "
8
8
export FORCE_FLAG=" "
Original file line number Diff line number Diff line change @@ -30,13 +30,13 @@ spec:
30
30
type : RuntimeDefault
31
31
containers :
32
32
- name : controller
33
- image : quay.io/skupper/controller:2.0.0-rc1
33
+ image : quay.io/skupper/controller:2.0.0
34
34
imagePullPolicy : Always
35
35
command : ["/app/controller"]
36
36
args : ["-enable-grants", "-grant-server-autoconfigure"]
37
37
env :
38
38
- name : SKUPPER_KUBE_ADAPTOR_IMAGE
39
- value : quay.io/skupper/kube-adaptor:2.0.0-rc1
39
+ value : quay.io/skupper/kube-adaptor:2.0.0
40
40
- name : SKUPPER_KUBE_ADAPTOR_IMAGE_PULL_POLICY
41
41
value : Always
42
42
- name : SKUPPER_ROUTER_IMAGE
Original file line number Diff line number Diff line change 12
12
- name : controller
13
13
env :
14
14
- name : RELATED_IMAGE_kube_adaptor
15
- value : quay.io/skupper/kube-adaptor:2.0.0-rc1
15
+ value : quay.io/skupper/kube-adaptor:2.0.0
16
16
- name : RELATED_IMAGE_skupper-router
17
17
value : quay.io/skupper/skupper-router:3.2.0
Original file line number Diff line number Diff line change @@ -3,13 +3,13 @@ package images
3
3
const (
4
4
DefaultImageRegistry string = "quay.io/skupper"
5
5
RouterImageName string = "skupper-router:3.2.0"
6
- ControllerImageName string = "controller:2.0.0-rc1 "
7
- KubeAdaptorImageName string = "kube-adaptor:2.0.0-rc1 "
8
- NetworkObserverImageName string = "network-observer:2.0.0-rc1 "
9
- CliImageName string = "cli:2.0.0-rc1 "
6
+ ControllerImageName string = "controller:2.0.0"
7
+ KubeAdaptorImageName string = "kube-adaptor:2.0.0"
8
+ NetworkObserverImageName string = "network-observer:2.0.0"
9
+ CliImageName string = "cli:2.0.0"
10
10
11
11
PrometheusImageRegistry string = "quay.io/prometheus"
12
- PrometheusServerImageName string = "prometheus:v3.0.1 "
12
+ PrometheusServerImageName string = "prometheus:v3.1.0 "
13
13
OauthProxyImageRegistry string = "quay.io/openshift"
14
14
OauthProxyImageName string = "origin-oauth-proxy:4.14.0"
15
15
)
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ if [ "$#" -ne 2 ]; then
7
7
fi
8
8
9
9
10
- VERSION=" 2.0.0-rc1 "
10
+ VERSION=" 2.0.0"
11
11
APP_VERSION=" $1 "
12
12
ROUTER_VERSION=" $2 "
13
13
You can’t perform that action at this time.
0 commit comments