Skip to content

Commit

Permalink
Update for 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nluaces committed Jun 21, 2023
1 parent bb07624 commit 3eb0817
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions Dockerfile.flow-collector
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ RUN make
FROM node:16.17 AS console-builder

WORKDIR /skupper-console/
ADD https://github.com/skupperproject/skupper-console/archive/refs/tags/1.4.0-rc4.tar.gz .
RUN tar -zxf 1.4.0-rc4.tar.gz
WORKDIR ./skupper-console-1.4.0-rc4
ADD https://github.com/skupperproject/skupper-console/archive/refs/tags/1.4.1.tar.gz .
RUN tar -zxf 1.4.1.tar.gz
WORKDIR ./skupper-console-1.4.1
RUN yarn install && yarn build

FROM registry.access.redhat.com/ubi9-minimal
Expand All @@ -28,5 +28,5 @@ USER 10000

WORKDIR /app
COPY --from=builder /go/src/app/flow-collector .
COPY --from=console-builder /skupper-console/skupper-console-1.4.0-rc4/build/ console
COPY --from=console-builder /skupper-console/skupper-console-1.4.1/build/ console
CMD ["/app/flow-collector"]
2 changes: 1 addition & 1 deletion cmd/site-controller/deploy-watch-all-ns.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ spec:
type: RuntimeDefault
containers:
- name: site-controller
image: quay.io/skupper/site-controller:1.4.0-rc4
image: quay.io/skupper/site-controller:1.4.1
securityContext:
capabilities:
drop:
Expand Down
2 changes: 1 addition & 1 deletion cmd/site-controller/deploy-watch-current-ns.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ spec:
type: RuntimeDefault
containers:
- name: site-controller
image: quay.io/skupper/site-controller:1.4.0-rc4
image: quay.io/skupper/site-controller:1.4.1
securityContext:
capabilities:
drop:
Expand Down
8 changes: 4 additions & 4 deletions pkg/images/images.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ package images

const (
DefaultImageRegistry string = "quay.io/skupper"
RouterImageName string = "skupper-router:2.4.0"
ServiceControllerImageName string = "service-controller:1.4.0-rc4"
ConfigSyncImageName string = "config-sync:1.4.0-rc4"
FlowCollectorImageName string = "flow-collector:1.4.0-rc4"
RouterImageName string = "skupper-router:2.4.1"
ServiceControllerImageName string = "service-controller:1.4.1"
ConfigSyncImageName string = "config-sync:1.4.1"
FlowCollectorImageName string = "flow-collector:1.4.1"
PrometheusImageRegistry string = "quay.io/prometheus"
PrometheusServerImageName string = "prometheus:v2.42.0"
)

0 comments on commit 3eb0817

Please sign in to comment.