Skip to content

Commit

Permalink
update for 0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
grs committed Oct 20, 2021
1 parent e432c30 commit 5ee6e04
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions Dockerfile.service-controller
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ RUN make
FROM node:12.18 AS console-builder

WORKDIR /skupper-console/
ADD https://github.com/skupperproject/gilligan/archive/master.tar.gz .
RUN tar -zxf master.tar.gz
WORKDIR ./gilligan-master
ADD https://github.com/skupperproject/gilligan/archive/refs/tags/v0.8.tar.gz .
RUN tar -zxf v0.8.tar.gz
WORKDIR ./gilligan-0.8
RUN yarn install && yarn build

FROM registry.access.redhat.com/ubi8-minimal

WORKDIR /app
COPY --from=builder /go/src/app/service-controller .
COPY --from=builder /go/src/app/get /usr/local/bin/get
COPY --from=console-builder /skupper-console/gilligan-master/build/ console
COPY --from=console-builder /skupper-console/gilligan-0.8/build/ console
CMD ["/app/service-controller"]
4 changes: 2 additions & 2 deletions client/images.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package client

const (
DefaultRouterImage string = "quay.io/interconnectedcloud/qdrouterd:nightly"
DefaultServiceControllerImage string = "quay.io/skupper/service-controller:0.7"
DefaultRouterImage string = "quay.io/interconnectedcloud/qdrouterd:1.17.0"
DefaultServiceControllerImage string = "quay.io/skupper/service-controller:0.8.0"
)
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 @@ -109,4 +109,4 @@ spec:
serviceAccountName: skupper-site-controller
containers:
- name: site-controller
image: quay.io/skupper/site-controller
image: quay.io/skupper/site-controller:0.8.0
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 @@ -105,7 +105,7 @@ spec:
serviceAccountName: skupper-site-controller
containers:
- name: site-controller
image: quay.io/skupper/site-controller
image: quay.io/skupper/site-controller:0.8.0
env:
- name: WATCH_NAMESPACE
valueFrom:
Expand Down

0 comments on commit 5ee6e04

Please sign in to comment.