-
Notifications
You must be signed in to change notification settings - Fork 544
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug 1779990: fix(packageserver): cache packagemanifests #1150
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -450,3 +450,5 @@ __pycache__/ | |
/apiserver.local.config | ||
e2e.namespace | ||
minikube.kubeconfig | ||
apiserver.crt | ||
apiserver.key |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,6 @@ require ( | |
github.com/fsnotify/fsnotify v1.4.7 | ||
github.com/ghodss/yaml v1.0.0 | ||
github.com/go-openapi/spec v0.19.2 | ||
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b | ||
github.com/golang/groupcache v0.0.0-20181024230925-c65c006176ff // indirect | ||
github.com/golang/mock v1.3.1 | ||
github.com/google/btree v1.0.0 // indirect | ||
|
@@ -34,6 +33,7 @@ require ( | |
github.com/stretchr/testify v1.4.0 | ||
github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5 // indirect | ||
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect | ||
golang.org/x/sync v0.0.0-20190423024810-112230192c58 | ||
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4 | ||
gonum.org/v1/gonum v0.0.0-20190710053202-4340aa3071a0 // indirect | ||
google.golang.org/grpc v1.23.0 | ||
|
@@ -44,6 +44,7 @@ require ( | |
k8s.io/client-go v8.0.0+incompatible | ||
k8s.io/code-generator v0.0.0 | ||
k8s.io/component-base v0.0.0 | ||
k8s.io/klog v0.4.0 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. OLM codepaths using |
||
k8s.io/kube-aggregator v0.0.0 | ||
k8s.io/kube-openapi v0.0.0-20190816220812-743ec37842bf | ||
k8s.io/kubernetes v1.16.0 | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Decided to clean all this up while I'm here.