├── .github └── ISSUE_TEMPLATE │ ├── chapter-request.md │ └── error-report.md └── README.md /.github/ISSUE_TEMPLATE/chapter-request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Chapter Request 3 | about: Suggest what should be added to the book 4 | title: '' 5 | labels: enhancement 6 | assignees: '' 7 | 8 | --- 9 | 10 | **What did you miss in the book?** 11 | Please describe what you would like to see in the book. 12 | 13 | **Where would you place the additional content?** 14 | Between chapters: 15 | At page: 16 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/error-report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Error Report 3 | about: Create an error report to help us improve our book 4 | title: '' 5 | labels: error 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the error** 11 | Please describe what is wrong in the book. 12 | 13 | **What should be different?** 14 | Please describe how the error should be fixed (optional). 15 | 16 | **Details** 17 | Page: 18 | Chapter: 19 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # GitOps 2 | 3 | ## What is this repo? 4 | 5 | In this repo, we track suggestions and feedback to [our book on GitOps](https://leanpub.com/gitops). 6 | Feel free to [open an issue](https://github.com/gitops-tech/book/issues/new/choose) if have any suggestion for a future release of the book or if you found an error. 7 | We'll try our best to include your feedback in the future. 8 | 9 | ## What is the book about? 10 | 11 | Our book is about GitOps — a cloud-native continuous deployment strategy. 12 | It also includes a hands-on part, where we show you how to use GitOps in your project by using [Flux](https://fluxcd.io/). 13 | 14 | ## How can I get your book? 15 | 16 | You can either buy it on [Leanpub](https://leanpub.com/gitops) or on [Amazon](https://www.amazon.com/dp/B098GSX42P/ref=nodl_). 17 | 18 | ## Who are we? 19 | 20 | We are [Anja Kammer](https://github.com/anjakammer), [Simon Harrer](https://github.com/simonharrer) and [Florian Beetz](https://github.com/florian-beetz). 21 | Together we published our [summary of GitOps](https://gitops.tech) and a [book on GitOps](https://leanpub.com/gitops). 22 | --------------------------------------------------------------------------------