File tree Expand file tree Collapse file tree 13 files changed +221
-21
lines changed Expand file tree Collapse file tree 13 files changed +221
-21
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 44#
55# ${PATH_TO_KUBEFLOW/KUBEFLOW repo}/components
66#
7- # This is necessary because the Jupyter controller now depends on
8- # components/common
97ARG GOLANG_VERSION=1.17
108FROM golang:${GOLANG_VERSION} as builder
119
1210WORKDIR /workspace
1311
1412# Copy the Go Modules manifests
1513COPY notebook-controller /workspace/notebook-controller
16- COPY common /workspace/common
1714
1815# cache deps before building and copying source so that we don't need to re-download as much
1916# and so that source changes don't invalidate our downloaded layer
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ import (
2525 "time"
2626
2727 "github.com/go-logr/logr"
28- reconcilehelper "github.com/kubeflow/kubeflow/components/common /reconcilehelper"
28+ reconcilehelper "github.com/kubeflow/kubeflow/components/notebook-controller /reconcilehelper"
2929 "github.com/kubeflow/kubeflow/components/notebook-controller/api/v1beta1"
3030 "github.com/kubeflow/kubeflow/components/notebook-controller/pkg/metrics"
3131 appsv1 "k8s.io/api/apps/v1"
Original file line number Diff line number Diff line change 44
55require (
66 github.com/go-logr/logr v1.2.0
7- github.com/kubeflow/kubeflow/components/common v0.0.0-20220218084159-4ad0158e955e
87 github.com/onsi/ginkgo v1.16.5
98 github.com/onsi/gomega v1.17.0
109 github.com/prometheus/client_golang v1.11.1
Original file line number Diff line number Diff line change @@ -314,8 +314,6 @@ github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
314314github.com/kr/text v0.1.0 /go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI =
315315github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY =
316316github.com/kr/text v0.2.0 /go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE =
317- github.com/kubeflow/kubeflow/components/common v0.0.0-20220218084159-4ad0158e955e h1:Ud6a+mkZ5pj+QqZnsIPPBk1WrABz1wYcd1n9CYjMMBA =
318- github.com/kubeflow/kubeflow/components/common v0.0.0-20220218084159-4ad0158e955e /go.mod h1:uj1ImonZ+hHqWKfzZGWjuxl1uODjubBNrg4W8c38/ts =
319317github.com/magiconair/properties v1.8.1 /go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ =
320318github.com/magiconair/properties v1.8.5 /go.mod h1:y3VJvCyxH9uVvJTWEGAELF3aiYNyPKd5NZ3oSwXrF60 =
321319github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63 /go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc =
File renamed without changes.
Original file line number Diff line number Diff line change @@ -147,7 +147,6 @@ github.com/kr/logfmt
147147github.com/kr/pretty
148148github.com/kr/pty
149149github.com/kr/text
150- github.com/kubeflow/kubeflow/components/common
151150github.com/magiconair/properties
152151github.com/mailru/easyjson
153152github.com/mattn/go-colorable
Original file line number Diff line number Diff line change 33#
44# ${PATH_TO_KUBEFLOW/KUBEFLOW repo}/components
55#
6- # This is necessary because the Jupyter controller now depends on
7- # components/common
86FROM golang:1.17 as builder
97
108WORKDIR /workspace
119# Copy the Go Modules manifests
1210COPY tensorboard-controller /workspace/tensorboard-controller
13- COPY common /workspace/common
1411# cache deps before building and copying source so that we don't need to re-download as much
1512# and so that source changes don't invalidate our downloaded layer
1613RUN cd /workspace/tensorboard-controller && go mod download
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ import (
3737 "sigs.k8s.io/controller-runtime/pkg/client"
3838 "sigs.k8s.io/controller-runtime/pkg/reconcile"
3939
40- reconcilehelper "github.com/kubeflow/kubeflow/components/common /reconcilehelper"
40+ reconcilehelper "github.com/kubeflow/kubeflow/components/tensorboard-controller /reconcilehelper"
4141 tensorboardv1alpha1 "github.com/kubeflow/kubeflow/components/tensorboard-controller/api/v1alpha1"
4242)
4343
You can’t perform that action at this time.
0 commit comments