Skip to content

Commit

Permalink
Adding additional resources for CRDs and Controllers
Browse files Browse the repository at this point in the history
Had several people asking about how to learn about
Custom Resource Definitions and Controllers with
Kubernetes.

Adding the best resources I've found on the above.
  • Loading branch information
markmandel committed Apr 23, 2018
1 parent 86b727c commit 11f8132
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,20 @@ See the [Container Builder documentation](https://cloud.google.com/container-bui
how to edit and expand the build process.

### Additional Resources
- [How to write a good Git Commit message](https://chris.beams.io/posts/git-commit/)

#### Kubernetes

- [Kubernetes Custom Resources](https://kubernetes.io/docs/concepts/api-extension/custom-resources/) -
This is how we define our own resource names (`GameServer`, etc) within Kubernetes.
- [Joe Beda's TGIK Controller](https://github.com/jbeda/tgik-controller) -
[Joe Beda](https://twitter.com/jbeda) did a video series on writing controllers for Kubernetes.
**This is the best resource for learning about controllers and Kubernetes.**
- [Kubernetes Sample Controller](https://github.com/kubernetes/sample-controller) -
Example of a Custom Resources with a Kubernetes Controller.
- [Kubernetes Code Generator](https://github.com/kubernetes/code-generator) -
The tooling that generated the Go libraries for the Custom Resource we define

#### Coding and Development

- [How to write a good Git Commit message](https://chris.beams.io/posts/git-commit/) -
Great way to make sure your Pull Requests get accepted.

0 comments on commit 11f8132

Please sign in to comment.