├── .bowerrc ├── .editorconfig ├── .gitignore ├── .ruby-version ├── CNAME ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── _assets ├── images │ ├── apple-touch-icon.png │ ├── dojo-raw-white-overlay-cropped.jpg │ ├── dojo-raw-white-overlay-cropped.psd │ ├── dojo-raw-white-overlay.psd │ ├── dojo-raw.jpg │ ├── git-workflow.png │ ├── git-workflow@2x.png │ ├── logo.png │ ├── logo.svg │ ├── logo@2x.png │ ├── logo@3x.png │ ├── prodops-color-chart.html │ ├── prodops-colors.gif │ ├── prodops-colors.png │ ├── prodops-venndiagram.png │ ├── prodops-venndiagram@2x.png │ ├── prodops-venndiagram@3x.png │ ├── prodops.cs │ ├── prodops.png │ └── prodops_cs.png └── stylesheets │ ├── _custom.scss │ └── application.scss ├── _config.yml ├── _includes ├── footer.html ├── head.html ├── header.html ├── icon-github.html └── icon-twitter.html ├── _layouts ├── default.html └── main.html ├── _posts └── 2016-09-26-welcome-to-jekyll.markdown ├── about.md ├── assets └── dojo-in-the-raw.jpg ├── bin ├── deploy ├── github-pages ├── htmlproofer ├── jekyll ├── kramdown ├── listen ├── nokogiri ├── rackup ├── rougify ├── safe_yaml ├── sass ├── sass-convert ├── scss └── sprockets ├── bower.json ├── circle.yml ├── favicon.png ├── feed.xml ├── index.html └── script ├── bootstrap ├── build ├── cibuild ├── html-proofer ├── server ├── test └── test-prose /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "_assets/bower" 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | charset = utf-8 7 | indent_size = 2 8 | indent_style = space 9 | insert_final_newline = true 10 | trim_trailing_whitespace = true 11 | 12 | [*.md] 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .sass-cache 3 | .jekyll-metadata 4 | vendor 5 | .bundle 6 | 7 | !.keep 8 | *.DS_Store 9 | *.sass-cache 10 | /.asset-cache/* 11 | /_assets/bower/* 12 | /_site/* 13 | /_vendor/* 14 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.3.1 2 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | prodops.guide 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, gender identity and expression, level of experience, 9 | nationality, personal appearance, race, religion, or sexual identity and 10 | orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at opensource@github.com. All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at [http://contributor-covenant.org/version/1/4][version] 72 | 73 | [homepage]: http://contributor-covenant.org 74 | [version]: http://contributor-covenant.org/version/1/4/ 75 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing to ProdOps Guides 2 | 3 | Thanks for checking out the ProdOps Guides! We're excited to hear and learn from you. Your experiences will benefit others who read and use these guides. 4 | 5 | We've put together the following guidelines to help you figure out where you can best be helpful. 6 | 7 | ## Table of Contents 8 | 9 | 0. [Types of contributions we're looking for](#types-of-contributions-were-looking-for) 10 | 0. [Ground rules & expectations](#ground-rules--expectations) 11 | 0. [How to contribute](#how-to-contribute) 12 | 0. [Setting up your environment](#setting-up-your-environment) 13 | 0. [Contribution review process](#contribution-review-process) 14 | 0. [Community](#community) 15 | 16 | ## Types of contributions we're looking for 17 | First and foremost, this project is a forum to discuss ProdOps best practices, then document them in a guide when we've found consensus. Your first contribution might be starting a new conversation, or adding to an existing conversation, around best practices. You can do so under [Issues](https://github.com/github/prodops-guide/issues). 18 | 19 | There are also many ways you can directly contribute to the guides: 20 | 21 | * Fix editorial inconsistencies or inaccuracies 22 | * Revise language to be more approachable and friendly 23 | * Translate the guide into other languages 24 | * Add links to other case studies or examples that help illustrate a point (either inline, or under "Further Reading") 25 | * Write a new article (please open an issue to discuss before writing!) 26 | 27 | Interested in making a contribution? Read on! 28 | 29 | ## Ground rules & expectations 30 | 31 | Before we get started, here are a few things we expect from you (and that you should expect from others): 32 | 33 | * Be kind and thoughtful in your conversations around this project. We all come from different backgrounds and projects, which means we likely have different perspectives on "how open source is done." Try to listen to others rather than convince them that your way is correct. 34 | * This guide is released with a [Contributor Code of Conduct](./CODE_OF_CONDUCT.md). By participating in this project, you agree to abide by its terms. 35 | * If you open a pull request, please ensure that your contribution passes all tests. If there are test failures, you will need to address them before we can merge your contribution. 36 | 37 | ## How to contribute 38 | 39 | If you'd like to contribute, start by searching through the [issues](https://github.com/github/prodops-guide/issues) and [pull requests](https://github.com/github/prodops-guide/pulls) to see whether someone else has raised a similar idea or question. 40 | 41 | If you don't see your idea listed, and you think it fits into the goals of this guide, do one of the following: 42 | * **If your contribution is minor,** such as a typo fix, you can make the change and open a pull request. 43 | * **If your contribution is major,** such as a new article or case study, start by opening an issue first. That way, other people can weigh in on the discussion before you do any work. 44 | 45 | ## Setting up your environment 46 | 47 | This site is powered by [Jekyll](jekyllrb.com). Running it on your local machine requires a working [Ruby](https://www.ruby-lang.org/en/) installation with [Bundler](http://bundler.io/). 48 | 49 | Once you have that set up, run: 50 | 51 | script/bootstrap 52 | script/server 53 | 54 | …and open http://localhost:4000 in your web browser. 55 | 56 | ## Contribution review process 57 | 58 | This repo is currently maintained by @coryvj, @leefaus and @kingmichaelj, who have commit access. They will likely review your contribution. 59 | 60 | While we enjoy maintaining this project and are excited that you want to participate, we have full-time jobs and competing priorities. If you haven't heard from anyone in 10 days, feel free to bump the thread or @-mention a maintainer to review your contribution. 61 | 62 | If you've been active on this project (such as writing helpful content, answering others' questions, or triaging issues) and would like a more formal leadership role, open up an issue and let's talk about it! 63 | 64 | ## Community 65 | 66 | Discussions about the ProdOps Guides take place on this repository's [Issues](https://github.com/github/prodops-guide/issues) and [Pull Requests](https://github.com/github/prodops-guide/pulls) sections. Anybody is welcome to join these conversations. There is also a [Slack Channel]( 67 | https://prodops-guide.slack.com) for regular updates. 68 | 69 | Wherever possible, do not take these conversations to private channels, including contacting the maintainers directly. Keeping communication public means everybody can benefit and learn from the conversation. 70 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | ruby RUBY_VERSION 3 | 4 | # Hello! This is where you manage which Jekyll version is used to run. 5 | # When you want to use a different version, change it below, save the 6 | # file and run `bundle install`. Run Jekyll with `bundle exec`, like so: 7 | # 8 | # bundle exec jekyll serve 9 | # 10 | # This will help ensure the proper Jekyll version is running. 11 | # Happy Jekylling! 12 | # gem "jekyll", "3.2.1" 13 | 14 | # This is the default theme for new Jekyll sites. You may change this to anything you like. 15 | # gem "minima" 16 | 17 | # If you want to use GitHub Pages, remove the "gem "jekyll"" above and 18 | # uncomment the line below. To upgrade, run `bundle update github-pages`. 19 | gem "github-pages", group: :jekyll_plugins 20 | 21 | # If you have any plugins, put them here! 22 | group :jekyll_plugins do 23 | # gem "jekyll-github-metadata", "~> 1.0" 24 | gem 'bootstrap', '~> 4.0.0.alpha6' 25 | gem 'autoprefixer-rails' 26 | gem 'jekyll-assets' 27 | gem 'font-awesome-sass' 28 | gem "html-proofer" 29 | gem "jekyll" 30 | gem "jekyll-sitemap" 31 | gem "mini_magick" 32 | gem "sass" 33 | gem "uglifier" 34 | end 35 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | activesupport (4.2.7) 5 | i18n (~> 0.7) 6 | json (~> 1.7, >= 1.7.7) 7 | minitest (~> 5.1) 8 | thread_safe (~> 0.3, >= 0.3.4) 9 | tzinfo (~> 1.1) 10 | addressable (2.4.0) 11 | autoprefixer-rails (6.4.1.1) 12 | execjs 13 | bootstrap (4.0.0.alpha6) 14 | autoprefixer-rails (>= 6.0.3) 15 | sass (>= 3.4.19) 16 | coffee-script (2.4.1) 17 | coffee-script-source 18 | execjs 19 | coffee-script-source (1.10.0) 20 | colorator (1.1.0) 21 | colored (1.2) 22 | concurrent-ruby (1.0.2) 23 | ethon (0.9.1) 24 | ffi (>= 1.3.0) 25 | execjs (2.7.0) 26 | extras (0.1.0) 27 | forwardable-extended (~> 2.5) 28 | faraday (0.9.2) 29 | multipart-post (>= 1.2, < 3) 30 | fastimage (2.0.0) 31 | addressable (~> 2) 32 | ffi (1.9.14) 33 | font-awesome-sass (4.7.0) 34 | sass (>= 3.2) 35 | forwardable-extended (2.6.0) 36 | gemoji (2.1.0) 37 | github-pages (96) 38 | activesupport (= 4.2.7) 39 | github-pages-health-check (= 1.2.0) 40 | jekyll (= 3.2.1) 41 | jekyll-coffeescript (= 1.0.1) 42 | jekyll-feed (= 0.5.1) 43 | jekyll-gist (= 1.4.0) 44 | jekyll-github-metadata (= 2.0.2) 45 | jekyll-mentions (= 1.2.0) 46 | jekyll-paginate (= 1.1.0) 47 | jekyll-redirect-from (= 0.11.0) 48 | jekyll-sass-converter (= 1.3.0) 49 | jekyll-seo-tag (= 2.0.0) 50 | jekyll-sitemap (= 0.10.0) 51 | jemoji (= 0.7.0) 52 | kramdown (= 1.11.1) 53 | liquid (= 3.0.6) 54 | listen (= 3.0.6) 55 | mercenary (~> 0.3) 56 | minima (= 1.2.0) 57 | rouge (= 1.11.1) 58 | terminal-table (~> 1.4) 59 | github-pages-health-check (1.2.0) 60 | addressable (~> 2.3) 61 | net-dns (~> 0.8) 62 | octokit (~> 4.0) 63 | public_suffix (~> 1.4) 64 | typhoeus (~> 0.7) 65 | html-pipeline (2.4.2) 66 | activesupport (>= 2) 67 | nokogiri (>= 1.4) 68 | html-proofer (3.4.0) 69 | activesupport (>= 4.2, < 6.0) 70 | addressable (~> 2.3) 71 | colored (~> 1.2) 72 | mercenary (~> 0.3.2) 73 | nokogiri (~> 1.5) 74 | parallel (~> 1.3) 75 | typhoeus (~> 0.7) 76 | yell (~> 2.0) 77 | i18n (0.7.0) 78 | jekyll (3.2.1) 79 | colorator (~> 1.0) 80 | jekyll-sass-converter (~> 1.0) 81 | jekyll-watch (~> 1.1) 82 | kramdown (~> 1.3) 83 | liquid (~> 3.0) 84 | mercenary (~> 0.3.3) 85 | pathutil (~> 0.9) 86 | rouge (~> 1.7) 87 | safe_yaml (~> 1.0) 88 | jekyll-assets (2.2.8) 89 | extras (~> 0.1) 90 | fastimage (~> 2.0, >= 1.8) 91 | jekyll (~> 3.1, >= 3.0) 92 | pathutil (>= 0.8) 93 | rack (> 1, < 2) 94 | sprockets (~> 3.3, < 3.7) 95 | jekyll-coffeescript (1.0.1) 96 | coffee-script (~> 2.2) 97 | jekyll-feed (0.5.1) 98 | jekyll-gist (1.4.0) 99 | octokit (~> 4.2) 100 | jekyll-github-metadata (2.0.2) 101 | jekyll (~> 3.1) 102 | octokit (~> 4.0) 103 | jekyll-mentions (1.2.0) 104 | activesupport (~> 4.0) 105 | html-pipeline (~> 2.3) 106 | jekyll (~> 3.0) 107 | jekyll-paginate (1.1.0) 108 | jekyll-redirect-from (0.11.0) 109 | jekyll (>= 2.0) 110 | jekyll-sass-converter (1.3.0) 111 | sass (~> 3.2) 112 | jekyll-seo-tag (2.0.0) 113 | jekyll (~> 3.1) 114 | jekyll-sitemap (0.10.0) 115 | jekyll-watch (1.5.0) 116 | listen (~> 3.0, < 3.1) 117 | jemoji (0.7.0) 118 | activesupport (~> 4.0) 119 | gemoji (~> 2.0) 120 | html-pipeline (~> 2.2) 121 | jekyll (>= 3.0) 122 | json (1.8.3) 123 | kramdown (1.11.1) 124 | liquid (3.0.6) 125 | listen (3.0.6) 126 | rb-fsevent (>= 0.9.3) 127 | rb-inotify (>= 0.9.7) 128 | mercenary (0.3.6) 129 | mini_magick (4.6.0) 130 | mini_portile2 (2.1.0) 131 | minima (1.2.0) 132 | minitest (5.9.1) 133 | multipart-post (2.0.0) 134 | net-dns (0.8.0) 135 | nokogiri (1.6.8) 136 | mini_portile2 (~> 2.1.0) 137 | pkg-config (~> 1.1.7) 138 | octokit (4.3.0) 139 | sawyer (~> 0.7.0, >= 0.5.3) 140 | parallel (1.10.0) 141 | pathutil (0.14.0) 142 | forwardable-extended (~> 2.6) 143 | pkg-config (1.1.7) 144 | public_suffix (1.5.3) 145 | rack (1.6.4) 146 | rb-fsevent (0.9.7) 147 | rb-inotify (0.9.7) 148 | ffi (>= 0.5.0) 149 | rouge (1.11.1) 150 | safe_yaml (1.0.4) 151 | sass (3.4.22) 152 | sawyer (0.7.0) 153 | addressable (>= 2.3.5, < 2.5) 154 | faraday (~> 0.8, < 0.10) 155 | sprockets (3.6.3) 156 | concurrent-ruby (~> 1.0) 157 | rack (> 1, < 3) 158 | terminal-table (1.7.3) 159 | unicode-display_width (~> 1.1.1) 160 | thread_safe (0.3.5) 161 | typhoeus (0.8.0) 162 | ethon (>= 0.8.0) 163 | tzinfo (1.2.2) 164 | thread_safe (~> 0.1) 165 | uglifier (3.0.4) 166 | execjs (>= 0.3.0, < 3) 167 | unicode-display_width (1.1.1) 168 | yell (2.0.7) 169 | 170 | PLATFORMS 171 | ruby 172 | 173 | DEPENDENCIES 174 | autoprefixer-rails 175 | bootstrap (~> 4.0.0.alpha6) 176 | font-awesome-sass 177 | github-pages 178 | html-proofer 179 | jekyll 180 | jekyll-assets 181 | jekyll-sitemap 182 | mini_magick 183 | sass 184 | uglifier 185 | 186 | RUBY VERSION 187 | ruby 2.3.1p112 188 | 189 | BUNDLED WITH 190 | 1.13.7 191 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Attribution 4.0 International 2 | 3 | ======================================================================= 4 | 5 | Creative Commons Corporation ("Creative Commons") is not a law firm and 6 | does not provide legal services or legal advice. Distribution of 7 | Creative Commons public licenses does not create a lawyer-client or 8 | other relationship. Creative Commons makes its licenses and related 9 | information available on an "as-is" basis. Creative Commons gives no 10 | warranties regarding its licenses, any material licensed under their 11 | terms and conditions, or any related information. Creative Commons 12 | disclaims all liability for damages resulting from their use to the 13 | fullest extent possible. 14 | 15 | Using Creative Commons Public Licenses 16 | 17 | Creative Commons public licenses provide a standard set of terms and 18 | conditions that creators and other rights holders may use to share 19 | original works of authorship and other material subject to copyright 20 | and certain other rights specified in the public license below. The 21 | following considerations are for informational purposes only, are not 22 | exhaustive, and do not form part of our licenses. 23 | 24 | Considerations for licensors: Our public licenses are 25 | intended for use by those authorized to give the public 26 | permission to use material in ways otherwise restricted by 27 | copyright and certain other rights. Our licenses are 28 | irrevocable. Licensors should read and understand the terms 29 | and conditions of the license they choose before applying it. 30 | Licensors should also secure all rights necessary before 31 | applying our licenses so that the public can reuse the 32 | material as expected. Licensors should clearly mark any 33 | material not subject to the license. This includes other CC- 34 | licensed material, or material used under an exception or 35 | limitation to copyright. More considerations for licensors: 36 | wiki.creativecommons.org/Considerations_for_licensors 37 | 38 | Considerations for the public: By using one of our public 39 | licenses, a licensor grants the public permission to use the 40 | licensed material under specified terms and conditions. If 41 | the licensor's permission is not necessary for any reason--for 42 | example, because of any applicable exception or limitation to 43 | copyright--then that use is not regulated by the license. Our 44 | licenses grant only permissions under copyright and certain 45 | other rights that a licensor has authority to grant. Use of 46 | the licensed material may still be restricted for other 47 | reasons, including because others have copyright or other 48 | rights in the material. A licensor may make special requests, 49 | such as asking that all changes be marked or described. 50 | Although not required by our licenses, you are encouraged to 51 | respect those requests where reasonable. More_considerations 52 | for the public: 53 | wiki.creativecommons.org/Considerations_for_licensees 54 | 55 | ======================================================================= 56 | 57 | Creative Commons Attribution 4.0 International Public License 58 | 59 | By exercising the Licensed Rights (defined below), You accept and agree 60 | to be bound by the terms and conditions of this Creative Commons 61 | Attribution 4.0 International Public License ("Public License"). To the 62 | extent this Public License may be interpreted as a contract, You are 63 | granted the Licensed Rights in consideration of Your acceptance of 64 | these terms and conditions, and the Licensor grants You such rights in 65 | consideration of benefits the Licensor receives from making the 66 | Licensed Material available under these terms and conditions. 67 | 68 | 69 | Section 1 -- Definitions. 70 | 71 | a. Adapted Material means material subject to Copyright and Similar 72 | Rights that is derived from or based upon the Licensed Material 73 | and in which the Licensed Material is translated, altered, 74 | arranged, transformed, or otherwise modified in a manner requiring 75 | permission under the Copyright and Similar Rights held by the 76 | Licensor. For purposes of this Public License, where the Licensed 77 | Material is a musical work, performance, or sound recording, 78 | Adapted Material is always produced where the Licensed Material is 79 | synched in timed relation with a moving image. 80 | 81 | b. Adapter's License means the license You apply to Your Copyright 82 | and Similar Rights in Your contributions to Adapted Material in 83 | accordance with the terms and conditions of this Public License. 84 | 85 | c. Copyright and Similar Rights means copyright and/or similar rights 86 | closely related to copyright including, without limitation, 87 | performance, broadcast, sound recording, and Sui Generis Database 88 | Rights, without regard to how the rights are labeled or 89 | categorized. For purposes of this Public License, the rights 90 | specified in Section 2(b)(1)-(2) are not Copyright and Similar 91 | Rights. 92 | 93 | d. Effective Technological Measures means those measures that, in the 94 | absence of proper authority, may not be circumvented under laws 95 | fulfilling obligations under Article 11 of the WIPO Copyright 96 | Treaty adopted on December 20, 1996, and/or similar international 97 | agreements. 98 | 99 | e. Exceptions and Limitations means fair use, fair dealing, and/or 100 | any other exception or limitation to Copyright and Similar Rights 101 | that applies to Your use of the Licensed Material. 102 | 103 | f. Licensed Material means the artistic or literary work, database, 104 | or other material to which the Licensor applied this Public 105 | License. 106 | 107 | g. Licensed Rights means the rights granted to You subject to the 108 | terms and conditions of this Public License, which are limited to 109 | all Copyright and Similar Rights that apply to Your use of the 110 | Licensed Material and that the Licensor has authority to license. 111 | 112 | h. Licensor means the individual(s) or entity(ies) granting rights 113 | under this Public License. 114 | 115 | i. Share means to provide material to the public by any means or 116 | process that requires permission under the Licensed Rights, such 117 | as reproduction, public display, public performance, distribution, 118 | dissemination, communication, or importation, and to make material 119 | available to the public including in ways that members of the 120 | public may access the material from a place and at a time 121 | individually chosen by them. 122 | 123 | j. Sui Generis Database Rights means rights other than copyright 124 | resulting from Directive 96/9/EC of the European Parliament and of 125 | the Council of 11 March 1996 on the legal protection of databases, 126 | as amended and/or succeeded, as well as other essentially 127 | equivalent rights anywhere in the world. 128 | 129 | k. You means the individual or entity exercising the Licensed Rights 130 | under this Public License. Your has a corresponding meaning. 131 | 132 | 133 | Section 2 -- Scope. 134 | 135 | a. License grant. 136 | 137 | 1. Subject to the terms and conditions of this Public License, 138 | the Licensor hereby grants You a worldwide, royalty-free, 139 | non-sublicensable, non-exclusive, irrevocable license to 140 | exercise the Licensed Rights in the Licensed Material to: 141 | 142 | a. reproduce and Share the Licensed Material, in whole or 143 | in part; and 144 | 145 | b. produce, reproduce, and Share Adapted Material. 146 | 147 | 2. Exceptions and Limitations. For the avoidance of doubt, where 148 | Exceptions and Limitations apply to Your use, this Public 149 | License does not apply, and You do not need to comply with 150 | its terms and conditions. 151 | 152 | 3. Term. The term of this Public License is specified in Section 153 | 6(a). 154 | 155 | 4. Media and formats; technical modifications allowed. The 156 | Licensor authorizes You to exercise the Licensed Rights in 157 | all media and formats whether now known or hereafter created, 158 | and to make technical modifications necessary to do so. The 159 | Licensor waives and/or agrees not to assert any right or 160 | authority to forbid You from making technical modifications 161 | necessary to exercise the Licensed Rights, including 162 | technical modifications necessary to circumvent Effective 163 | Technological Measures. For purposes of this Public License, 164 | simply making modifications authorized by this Section 2(a) 165 | (4) never produces Adapted Material. 166 | 167 | 5. Downstream recipients. 168 | 169 | a. Offer from the Licensor -- Licensed Material. Every 170 | recipient of the Licensed Material automatically 171 | receives an offer from the Licensor to exercise the 172 | Licensed Rights under the terms and conditions of this 173 | Public License. 174 | 175 | b. No downstream restrictions. You may not offer or impose 176 | any additional or different terms or conditions on, or 177 | apply any Effective Technological Measures to, the 178 | Licensed Material if doing so restricts exercise of the 179 | Licensed Rights by any recipient of the Licensed 180 | Material. 181 | 182 | 6. No endorsement. Nothing in this Public License constitutes or 183 | may be construed as permission to assert or imply that You 184 | are, or that Your use of the Licensed Material is, connected 185 | with, or sponsored, endorsed, or granted official status by, 186 | the Licensor or others designated to receive attribution as 187 | provided in Section 3(a)(1)(A)(i). 188 | 189 | b. Other rights. 190 | 191 | 1. Moral rights, such as the right of integrity, are not 192 | licensed under this Public License, nor are publicity, 193 | privacy, and/or other similar personality rights; however, to 194 | the extent possible, the Licensor waives and/or agrees not to 195 | assert any such rights held by the Licensor to the limited 196 | extent necessary to allow You to exercise the Licensed 197 | Rights, but not otherwise. 198 | 199 | 2. Patent and trademark rights are not licensed under this 200 | Public License. 201 | 202 | 3. To the extent possible, the Licensor waives any right to 203 | collect royalties from You for the exercise of the Licensed 204 | Rights, whether directly or through a collecting society 205 | under any voluntary or waivable statutory or compulsory 206 | licensing scheme. In all other cases the Licensor expressly 207 | reserves any right to collect such royalties. 208 | 209 | 210 | Section 3 -- License Conditions. 211 | 212 | Your exercise of the Licensed Rights is expressly made subject to the 213 | following conditions. 214 | 215 | a. Attribution. 216 | 217 | 1. If You Share the Licensed Material (including in modified 218 | form), You must: 219 | 220 | a. retain the following if it is supplied by the Licensor 221 | with the Licensed Material: 222 | 223 | i. identification of the creator(s) of the Licensed 224 | Material and any others designated to receive 225 | attribution, in any reasonable manner requested by 226 | the Licensor (including by pseudonym if 227 | designated); 228 | 229 | ii. a copyright notice; 230 | 231 | iii. a notice that refers to this Public License; 232 | 233 | iv. a notice that refers to the disclaimer of 234 | warranties; 235 | 236 | v. a URI or hyperlink to the Licensed Material to the 237 | extent reasonably practicable; 238 | 239 | b. indicate if You modified the Licensed Material and 240 | retain an indication of any previous modifications; and 241 | 242 | c. indicate the Licensed Material is licensed under this 243 | Public License, and include the text of, or the URI or 244 | hyperlink to, this Public License. 245 | 246 | 2. You may satisfy the conditions in Section 3(a)(1) in any 247 | reasonable manner based on the medium, means, and context in 248 | which You Share the Licensed Material. For example, it may be 249 | reasonable to satisfy the conditions by providing a URI or 250 | hyperlink to a resource that includes the required 251 | information. 252 | 253 | 3. If requested by the Licensor, You must remove any of the 254 | information required by Section 3(a)(1)(A) to the extent 255 | reasonably practicable. 256 | 257 | 4. If You Share Adapted Material You produce, the Adapter's 258 | License You apply must not prevent recipients of the Adapted 259 | Material from complying with this Public License. 260 | 261 | 262 | Section 4 -- Sui Generis Database Rights. 263 | 264 | Where the Licensed Rights include Sui Generis Database Rights that 265 | apply to Your use of the Licensed Material: 266 | 267 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right 268 | to extract, reuse, reproduce, and Share all or a substantial 269 | portion of the contents of the database; 270 | 271 | b. if You include all or a substantial portion of the database 272 | contents in a database in which You have Sui Generis Database 273 | Rights, then the database in which You have Sui Generis Database 274 | Rights (but not its individual contents) is Adapted Material; and 275 | 276 | c. You must comply with the conditions in Section 3(a) if You Share 277 | all or a substantial portion of the contents of the database. 278 | 279 | For the avoidance of doubt, this Section 4 supplements and does not 280 | replace Your obligations under this Public License where the Licensed 281 | Rights include other Copyright and Similar Rights. 282 | 283 | 284 | Section 5 -- Disclaimer of Warranties and Limitation of Liability. 285 | 286 | a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE 287 | EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS 288 | AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF 289 | ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, 290 | IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, 291 | WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR 292 | PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, 293 | ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT 294 | KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT 295 | ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. 296 | 297 | b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE 298 | TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, 299 | NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, 300 | INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, 301 | COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR 302 | USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN 303 | ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR 304 | DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR 305 | IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. 306 | 307 | c. The disclaimer of warranties and limitation of liability provided 308 | above shall be interpreted in a manner that, to the extent 309 | possible, most closely approximates an absolute disclaimer and 310 | waiver of all liability. 311 | 312 | 313 | Section 6 -- Term and Termination. 314 | 315 | a. This Public License applies for the term of the Copyright and 316 | Similar Rights licensed here. However, if You fail to comply with 317 | this Public License, then Your rights under this Public License 318 | terminate automatically. 319 | 320 | b. Where Your right to use the Licensed Material has terminated under 321 | Section 6(a), it reinstates: 322 | 323 | 1. automatically as of the date the violation is cured, provided 324 | it is cured within 30 days of Your discovery of the 325 | violation; or 326 | 327 | 2. upon express reinstatement by the Licensor. 328 | 329 | For the avoidance of doubt, this Section 6(b) does not affect any 330 | right the Licensor may have to seek remedies for Your violations 331 | of this Public License. 332 | 333 | c. For the avoidance of doubt, the Licensor may also offer the 334 | Licensed Material under separate terms or conditions or stop 335 | distributing the Licensed Material at any time; however, doing so 336 | will not terminate this Public License. 337 | 338 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 339 | License. 340 | 341 | 342 | Section 7 -- Other Terms and Conditions. 343 | 344 | a. The Licensor shall not be bound by any additional or different 345 | terms or conditions communicated by You unless expressly agreed. 346 | 347 | b. Any arrangements, understandings, or agreements regarding the 348 | Licensed Material not stated herein are separate from and 349 | independent of the terms and conditions of this Public License. 350 | 351 | 352 | Section 8 -- Interpretation. 353 | 354 | a. For the avoidance of doubt, this Public License does not, and 355 | shall not be interpreted to, reduce, limit, restrict, or impose 356 | conditions on any use of the Licensed Material that could lawfully 357 | be made without permission under this Public License. 358 | 359 | b. To the extent possible, if any provision of this Public License is 360 | deemed unenforceable, it shall be automatically reformed to the 361 | minimum extent necessary to make it enforceable. If the provision 362 | cannot be reformed, it shall be severed from this Public License 363 | without affecting the enforceability of the remaining terms and 364 | conditions. 365 | 366 | c. No term or condition of this Public License will be waived and no 367 | failure to comply consented to unless expressly agreed to by the 368 | Licensor. 369 | 370 | d. Nothing in this Public License constitutes or may be interpreted 371 | as a limitation upon, or waiver of, any privileges and immunities 372 | that apply to the Licensor or You, including from the legal 373 | processes of any jurisdiction or authority. 374 | 375 | 376 | ======================================================================= 377 | 378 | Creative Commons is not a party to its public 379 | licenses. Notwithstanding, Creative Commons may elect to apply one of 380 | its public licenses to material it publishes and in those instances 381 | will be considered the “Licensor.” The text of the Creative Commons 382 | public licenses is dedicated to the public domain under the CC0 Public 383 | Domain Dedication. Except for the limited purpose of indicating that 384 | material is shared under a Creative Commons public license or as 385 | otherwise permitted by the Creative Commons policies published at 386 | creativecommons.org/policies, Creative Commons does not authorize the 387 | use of the trademark "Creative Commons" or any other trademark or logo 388 | of Creative Commons without its prior written consent including, 389 | without limitation, in connection with any unauthorized modifications 390 | to any of its public licenses or any other arrangements, 391 | understandings, or agreements concerning use of licensed material. For 392 | the avoidance of doubt, this paragraph does not form part of the 393 | public licenses. 394 | 395 | Creative Commons may be contacted at creativecommons.org. 396 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ProdOps Guides 2 | 3 | Community guides for software creators. **[Check it out…](http://prodops.guide/)** 4 | 5 | ## Goals 6 | 7 | The goal of the ProdOps Guides is to provide teams, companies and organizations a framework to understand how software impacts business needs. 8 | 9 | Guides: 10 | - Accuracy: 11 | - Did we build what our customer wanted? 12 | - Did we align our requirements with company goals? 13 | - Utilization: 14 | - Did we leverage our developers to the best of our abilities? 15 | - Did we scope the work in a way that allows small, iterative releases? 16 | - Did we keep our team small enough to allow for effective collaboration? 17 | - Precision: 18 | - Did the product perform to expected standards? 19 | - Did we minimize our technical debt? 20 | - Did we define tests before implementation began? 21 | - Efficiency: 22 | - Did we create a flexible environment? 23 | - Did we create a scalable environment? 24 | - Did we create a secure environment? 25 | 26 | ### Value Statement 27 | 28 | > Put your values to work - @webdog (in Paris) 29 | 30 | ## Roadmap 31 | 32 | We've shared our vision and priorities for this project in our [roadmap](docs/roadmap.md). 33 | 34 | ## Contributing 35 | 36 | Our goal is for this project to reflect community best practices, so we'd love your input! Got a question or an idea? Check out our [contributing guidelines](/CONTRIBUTING.md) for ways to offer feedback and contribute. 37 | 38 | ## Licenses 39 | 40 | Content is released under [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/), which gives you permission to use content for almost any purpose but does not grant you any trademark permissions, so long as you note the license and give credit, such as follows: 41 | 42 | > Content based on 43 | > github.com/github/open-source-guide 44 | > used under the 45 | > CC-BY-4.0 46 | > license. 47 | 48 | Code, including source files and code samples if any in the content, is released under [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/). 49 | 50 | This means you can use the code and content in this repository except for GitHub trademarks in your own projects. 51 | 52 | When you contribute to this repository you are doing so under the above licenses. 53 | 54 | Screenshots in the guide are used according to [various permissions](notices.md#permissions). 55 | 56 | ## Acknowledgments 57 | 58 | The initial release of the guide was authored by **@leefaus, @coryvj, and @kingmichaelj**. 59 | 60 | Thanks to **@bkeepers** for helping me along this journey. 61 | -------------------------------------------------------------------------------- /_assets/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leefaus/prodops-guide/945553fd21124ceff1dc37ea305d65f057c84c89/_assets/images/apple-touch-icon.png -------------------------------------------------------------------------------- /_assets/images/dojo-raw-white-overlay-cropped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leefaus/prodops-guide/945553fd21124ceff1dc37ea305d65f057c84c89/_assets/images/dojo-raw-white-overlay-cropped.jpg -------------------------------------------------------------------------------- /_assets/images/dojo-raw-white-overlay-cropped.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leefaus/prodops-guide/945553fd21124ceff1dc37ea305d65f057c84c89/_assets/images/dojo-raw-white-overlay-cropped.psd -------------------------------------------------------------------------------- /_assets/images/dojo-raw-white-overlay.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leefaus/prodops-guide/945553fd21124ceff1dc37ea305d65f057c84c89/_assets/images/dojo-raw-white-overlay.psd -------------------------------------------------------------------------------- /_assets/images/dojo-raw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leefaus/prodops-guide/945553fd21124ceff1dc37ea305d65f057c84c89/_assets/images/dojo-raw.jpg -------------------------------------------------------------------------------- /_assets/images/git-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leefaus/prodops-guide/945553fd21124ceff1dc37ea305d65f057c84c89/_assets/images/git-workflow.png -------------------------------------------------------------------------------- /_assets/images/git-workflow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leefaus/prodops-guide/945553fd21124ceff1dc37ea305d65f057c84c89/_assets/images/git-workflow@2x.png -------------------------------------------------------------------------------- /_assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leefaus/prodops-guide/945553fd21124ceff1dc37ea305d65f057c84c89/_assets/images/logo.png -------------------------------------------------------------------------------- /_assets/images/logo.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_assets/images/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leefaus/prodops-guide/945553fd21124ceff1dc37ea305d65f057c84c89/_assets/images/logo@2x.png -------------------------------------------------------------------------------- /_assets/images/logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leefaus/prodops-guide/945553fd21124ceff1dc37ea305d65f057c84c89/_assets/images/logo@3x.png -------------------------------------------------------------------------------- /_assets/images/prodops-color-chart.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |ProdOps is the concept of measuring everything through the application development lifecycle. ProdOps is the missing component from requirements definition to application monitoring to ensure the application features meet your targeted outcomes. ProdOps enhances a lot of the current methodologies you leverage today.
30 |The methodologies above describe the workflow for how source code could move throughout a company and eventually make it to a user on their computer, tablet, or phone.
51 |Prioritize features to align with objectives and establish metrics for validation.
69 | Visit guide 70 |Continuous alignment of development resources to maximize productive capacity.
79 | Visit guide 80 |Ensure non-functional performance targets and functional business outcomes are met and improving.
91 | Visit guide 92 |Provide a flexible, performant and scalable infrastructure supporting the entire development lifecycle.
101 | Visit guide 102 |