Skip to content

Commit

Permalink
update for 1.4.0-rc4
Browse files Browse the repository at this point in the history
  • Loading branch information
nluaces committed Jun 16, 2023
1 parent ea2c0e3 commit 9512964
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 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-rc3.tar.gz .
RUN tar -zxf 1.4.0-rc3.tar.gz
WORKDIR ./skupper-console-1.4.0-rc3
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
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-rc3/build/ console
COPY --from=console-builder /skupper-console/skupper-console-1.4.0-rc4/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-rc3
image: quay.io/skupper/site-controller:1.4.0-rc4
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-rc3
image: quay.io/skupper/site-controller:1.4.0-rc4
securityContext:
capabilities:
drop:
Expand Down
6 changes: 3 additions & 3 deletions pkg/images/images.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package images
const (
DefaultImageRegistry string = "quay.io/skupper"
RouterImageName string = "skupper-router:2.4.0"
ServiceControllerImageName string = "service-controller:1.4.0-rc3"
ConfigSyncImageName string = "config-sync:1.4.0-rc3"
FlowCollectorImageName string = "flow-collector:1.4.0-rc3"
ServiceControllerImageName string = "service-controller:1.4.0-rc4"
ConfigSyncImageName string = "config-sync:1.4.0-rc4"
FlowCollectorImageName string = "flow-collector:1.4.0-rc4"
PrometheusImageRegistry string = "quay.io/prometheus"
PrometheusServerImageName string = "prometheus:v2.42.0"
)

0 comments on commit 9512964

Please sign in to comment.