Skip to content
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

WIP - Operator sdk v0.18 #443

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ pipelines. Any tool that builds images within a container can be supported, such
as [Kaniko](https://github.com/GoogleContainerTools/kaniko),
[Cloud Native Buildpacks](https://buildpacks.io/), and [Buildah](https://buildah.io/).

TEST - remove

## Dependencies

| Dependency | Supported versions |
Expand Down
21 changes: 13 additions & 8 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,30 +3,35 @@ module github.com/shipwright-io/build
go 1.13

require (
github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32 // indirect
github.com/go-bindata/go-bindata v3.1.2+incompatible // indirect
github.com/go-logr/logr v0.1.0
github.com/go-openapi/spec v0.19.6
github.com/gobuffalo/packr v1.30.1 // indirect
github.com/helm/helm-2to3 v0.5.1 // indirect
github.com/martinlindhe/base36 v1.0.0 // indirect
github.com/onsi/ginkgo v1.12.0
github.com/onsi/gomega v1.9.0
github.com/operator-framework/operator-sdk v0.17.0
github.com/operator-framework/operator-lifecycle-manager v0.0.0-20200321030439-57b580e57e88 // indirect
github.com/operator-framework/operator-sdk v0.18.2
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.5.1
github.com/prometheus/client_model v0.2.0
github.com/spf13/pflag v1.0.5
github.com/tektoncd/pipeline v0.14.2
golang.org/x/sys v0.0.0-20200413165638-669c56c373c4 // indirect
k8s.io/api v0.17.6
k8s.io/apimachinery v0.17.6
k8s.io/api v0.18.2
k8s.io/apimachinery v0.18.2
k8s.io/client-go v12.0.0+incompatible
k8s.io/code-generator v0.18.0
k8s.io/code-generator v0.18.2
k8s.io/kube-openapi v0.0.0-20200410145947-bcb3869e6f29
k8s.io/kubectl v0.17.4
k8s.io/kubectl v0.18.2
knative.dev/pkg v0.0.0-20200528142800-1c6815d7e4c9
sigs.k8s.io/controller-runtime v0.5.2
sigs.k8s.io/controller-runtime v0.6.0
sigs.k8s.io/yaml v1.2.0
)

replace (
github.com/Azure/go-autorest => github.com/Azure/go-autorest v13.3.2+incompatible // Required by OLM
k8s.io/client-go => k8s.io/client-go v0.17.4 // Required by prometheus-operator
k8s.io/code-generator => k8s.io/code-generator v0.17.4
k8s.io/client-go => k8s.io/client-go v0.18.2 // Required by prometheus-operator
)
110 changes: 110 additions & 0 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pkg/client/build/clientset/versioned/clientset.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

72 changes: 38 additions & 34 deletions pkg/client/build/clientset/versioned/typed/build/v1alpha1/build.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading