Skip to content

Commit

Permalink
Update for 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
grs committed May 19, 2021
1 parent 1f30c50 commit c18d808
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.6.tar.gz .
RUN tar -zxf v0.6.tar.gz
WORKDIR ./gilligan-0.6
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.6/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.5"
DefaultRouterImage string = "quay.io/interconnectedcloud/qdrouterd:1.16.0"
DefaultServiceControllerImage string = "quay.io/skupper/service-controller:0.6.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 @@ -98,4 +98,4 @@ spec:
serviceAccountName: skupper-site-controller
containers:
- name: site-controller
image: quay.io/skupper/site-controller
image: quay.io/skupper/site-controller:0.6.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 @@ -95,7 +95,7 @@ spec:
serviceAccountName: skupper-site-controller
containers:
- name: site-controller
image: quay.io/skupper/site-controller
image: quay.io/skupper/site-controller:0.6.0
env:
- name: WATCH_NAMESPACE
valueFrom:
Expand Down

0 comments on commit c18d808

Please sign in to comment.