Skip to content

Commit 01853c6

Browse files
aaron-prindletejal29
authored andcommitted
No kubebuilder (#66)
* Replace kubebuilder with knative/build style controllers This PR removes the kubebuilder dependency and framework from knative/build-pipeline, opting to instead use the hack/update-codegen.sh scripts approach to generating CRD libraries. The controller and directory structure were also updated to more closely mirror knative/build. Resource was temporarily renamed StandardResource as it collided with a method Register in pkg/apis/pipeline/v1alpha1/register.go. Currently tests are stubbed out since all of the existing tests were kubebuilder specific - we'll have to add more! Updates developer docs to include how to interact with this repo now that we've switched styles. Fixes #57 * Fix resource version In our first iteration of the API, we were using `v1beta1` as the version. We bumped this to `v1alpha1` while removing kubebuilder but didn't update it everywhere. Also removed extra references to git-init and creds-init (at the moment we aren't building these from anything in this repo) Co-authored-by: Tejal Desai <[email protected]>
1 parent 15f1373 commit 01853c6

File tree

5,703 files changed

+901002
-612107
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

5,703 files changed

+901002
-612107
lines changed

.gitattributes

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# This file is documented at https://git-scm.com/docs/gitattributes.
2+
# Linguist-specific attributes are documented at
3+
# https://github.com/github/linguist.
4+
5+
**/zz_generated.*.go linguist-generated=true
6+
/pkg/client/** linguist-generated=true

.gitignore

+32-9
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,38 @@
1-
# Binaries for programs and plugins
2-
*.exe
3-
*.exe~
4-
*.dll
1+
# Compiled Object files
2+
*.slo
3+
*.lo
4+
*.o
5+
*.obj
6+
7+
# Precompiled Headers
8+
*.gch
9+
*.pch
10+
11+
# Compiled Dynamic libraries
512
*.so
613
*.dylib
14+
*.dll
715

8-
# Test binary, build with `go test -c`
9-
*.test
16+
# Fortran module files
17+
*.mod
18+
*.smod
1019

11-
# Output of the go coverage tool, specifically when used with LiteIDE
20+
# Compiled Static libraries
21+
*.lai
22+
*.la
23+
*.a
24+
*.lib
25+
26+
# Executables
27+
*.exe
1228
*.out
29+
*.app
30+
31+
# Emacs garbage
32+
*~
33+
34+
# VSCode config
35+
.vscode
1336

14-
# bin folder
15-
bin/
37+
# JetBrains IDE config
38+
.idea

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,4 +125,4 @@ This work is being done by
125125
If you are interested please join our meetings and or slack!
126126

127127
All docs shared with this group are made visible to members of
128-
[knative-dev@](https://groups.google.com/forum/#!forum/knative-dev), please join if you are interested!
128+
[knative-dev@](https://groups.google.com/forum/#!forum/knative-dev), please join if you are interested!

DEVELOPMENT.md

+69-39
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,37 @@
55
1. Create [a GitHub account](https://github.com/join)
66
1. Setup [GitHub access via
77
SSH](https://help.github.com/articles/connecting-to-github-with-ssh/)
8+
1. [Create and checkout a repo fork](#checkout-your-fork)
9+
1. Set up your [shell environment](#environment-setup)
810
1. Install [requirements](#requirements)
911
1. [Set up a kubernetes cluster](https://github.com/knative/serving/blob/master/docs/creating-a-kubernetes-cluster.md)
1012
1. [Configure kubectl to use your cluster](https://kubernetes.io/docs/tasks/access-application-cluster/configure-access-multiple-clusters/)
13+
1. [Set up a docker repository you can push to](https://github.com/knative/serving/blob/master/docs/setting-up-a-docker-registry.md)
14+
15+
Then you can [iterate](#iterating) (including [runing the controllers with `ko`](#running-controllers)).
16+
17+
### Checkout your fork
18+
19+
The Go tools require that you clone the repository to the `src/github.com/knative/build-pipeline` directory
20+
in your [`GOPATH`](https://github.com/golang/go/wiki/SettingGOPATH).
21+
22+
To check out this repository:
23+
24+
1. Create your own [fork of this
25+
repo](https://help.github.com/articles/fork-a-repo/)
26+
1. Clone it to your machine:
27+
28+
```shell
29+
mkdir -p ${GOPATH}/src/github.com/knative
30+
cd ${GOPATH}/src/github.com/knative
31+
git clone [email protected]:${YOUR_GITHUB_USERNAME}/build-pipeline.git
32+
cd build-pipeline
33+
git remote add upstream [email protected]:knative/build-pipeline.git
34+
git remote set-url --push upstream no_push
35+
```
36+
37+
_Adding the `upstream` remote sets you up nicely for regularly [syncing your
38+
fork](https://help.github.com/articles/syncing-a-fork/)._
1139

1240
### Requirements
1341

@@ -17,64 +45,66 @@ You must install these tools:
1745
1. [`git`](https://help.github.com/articles/set-up-git/): For source control
1846
1. [`dep`](https://github.com/golang/dep): For managing external Go
1947
dependencies.
48+
1. [`ko`](https://github.com/google/go-containerregistry/tree/master/cmd/ko): For
49+
development.
2050
1. [`kubectl`](https://kubernetes.io/docs/tasks/tools/install-kubectl/): For interacting with your kube cluster (also required for kubebuidler)
21-
1. [`kustomize`](https://github.com/kubernetes-sigs/kustomize): Required for kubebuilder
22-
1. [`kubebuilder`](https://book.kubebuilder.io/quick_start.html): For generating CRD related
23-
boilerplate (see [docs on iterating with kubebuilder](#installing-and-running)) - Note that
24-
the installation instructions default to `mac`, use the tabs at the top to switch to `linux`
2551

26-
## Iterating
52+
## Environment Setup
2753

28-
### Dependencies
54+
To [run your controllers with `ko`](#running-controllers) you'll need to set these environment
55+
variables (we recommend adding them to your `.bashrc`):
2956

30-
This repo uses [`dep`](https://golang.github.io/dep/docs/daily-dep.html) for dependency management:
57+
1. `GOPATH`: If you don't have one, simply pick a directory and add `export GOPATH=...`
58+
1. `$GOPATH/bin` on `PATH`: This is so that tooling installed via `go get` will work properly.
59+
1. `KO_DOCKER_REPO`: The docker repository to which developer images should be pushed (e.g. `gcr.io/[gcloud-project]`).
3160

32-
* Update the deps with `dep ensure -update`
33-
* `dep ensure` should be a no-op
34-
* Add a dep with `dep ensure -add $MY_DEP`
61+
`.bashrc` example:
3562

36-
### Changing types
63+
```shell
64+
export GOPATH="$HOME/go"
65+
export PATH="${PATH}:${GOPATH}/bin"
66+
export KO_DOCKER_REPO='gcr.io/my-gcloud-project-name'
67+
```
3768

38-
When updating types, you should regenerate any generated code with:
69+
Make sure to configure [authentication](
70+
https://cloud.google.com/container-registry/docs/advanced-authentication#standalone_docker_credential_helper)
71+
for your `KO_DOCKER_REPO` if required. To be able to push images to `gcr.io/<project>`, you need to run this once:
3972

40-
```bash
41-
make generate
73+
```shell
74+
gcloud auth configure-docker
4275
```
4376

44-
Then test this by [installing and running](#installing-and-running).
45-
46-
### Installing and running
77+
## Iterating
4778

48-
The skeleton for this project was generated using [kubebuilder](https://book.kubebuilder.io/quick_start.html),
49-
which created our [Makefile](./Makefile). The `Makefile` will call out to `kubectl`,
50-
so you must [configure your `kubeconfig` to use your cluster](https://kubernetes.io/docs/tasks/access-application-cluster/configure-access-multiple-clusters/).
79+
While iterating on the project, you may need to:
5180

52-
Then a typical development cycle will look like this:
81+
1. [Run controllers](#running-controllers)
82+
1. Update your (external) dependencies with: `./hack/update-deps.sh`.
83+
1. Update your type definitions with: `./hack/update-codegen.sh`.
5384

54-
```bash
55-
# Add/update CRDs in your kubernetes cluster
56-
make install
85+
To make changes to these CRDs, you will probably interact with:
5786

58-
# Run your controller locally, (stop execution with `ctrl-c`)
59-
make run
87+
* The CRD type definitions in [./pkg/apis/pipeline/alpha1](./pkg/apis/pipeline/v1alpha1)
88+
* The controllers in [./pkg/controller](./pkg/controller)
89+
* The clients are in [./pkg/client](./pkg/controller) (these are generated by `./hack/update-codegen.sh`)
6090

61-
# In another terminal, deploy tasks
62-
kubectl apply -f config/samples
63-
```
91+
## Running controllers
6492

65-
You will also want to [run tests](#running-tests).
93+
You can stand up a version of this controller on-cluster (to your `kubectl config current-context`) with:
6694

67-
### Running tests
95+
```shell
96+
# This will register the CRD and deploy the controller to start acting on them.
97+
ko apply -f config/
98+
```
6899

69-
Run the tests with:
100+
As you make changes to the code, you can redeploy your controller with:
70101

71-
```bash
72-
make test
102+
```shell
103+
ko apply -f config/controller.yaml
73104
```
74105

75-
### Where's the code?
76-
77-
To make changes to these CRDs, you will probably interact with:
106+
You can clean up everything with:
78107

79-
* The CRD type definitions in [./pkg/apis/pipeline/v1beta1](./pkg/apis/pipeline/v1beta1)
80-
* The controllers in [./pkg/controller](./pkg/controller)
108+
```shell
109+
ko delete -f config/
110+
```

Dockerfile

-17
This file was deleted.

0 commit comments

Comments
 (0)