All Projects → PagerDuty → operational-review-docs

PagerDuty / operational-review-docs

Licence: Apache-2.0 license
PagerDuty's public operational review documentation.

Programming Languages

Dockerfile
14818 projects

Projects that are alternatives of or similar to operational-review-docs

pagerduty-zabbix-py
Zabbix Integration for PagerDuty via Python Wrapper
Stars: ✭ 15 (-21.05%)
Mutual labels:  type-service, in-scope
full-service-ownership-docs
PagerDuty's Full Service Ownership Documentation
Stars: ✭ 20 (+5.26%)
Mutual labels:  team-community
Reckoner
Declaratively install and manage multiple Helm chart releases
Stars: ✭ 177 (+831.58%)
Mutual labels:  operations
crowbar-core
Core deployment for Crowbar
Stars: ✭ 16 (-15.79%)
Mutual labels:  operations
Satellite
easy-to-use payload hosting
Stars: ✭ 193 (+915.79%)
Mutual labels:  operations
documentation
BHoM Docs
Stars: ✭ 69 (+263.16%)
Mutual labels:  operations
Control Tower
Deploy and operate Concourse CI in a single command
Stars: ✭ 105 (+452.63%)
Mutual labels:  operations
pagerduty-exporter
Prometheus exporter for PagerDuty informations
Stars: ✭ 38 (+100%)
Mutual labels:  pagerduty
trento
An open cloud-native web console improving on the work day of SAP Applications administrators.
Stars: ✭ 35 (+84.21%)
Mutual labels:  operations
Alertmanager
Prometheus Alertmanager
Stars: ✭ 4,574 (+23973.68%)
Mutual labels:  pagerduty
pagerduty-client
Simple PagerDuty client with full integration with PagerDuty Events APIs v2
Stars: ✭ 20 (+5.26%)
Mutual labels:  pagerduty
Flow
Operation Oriented Programming in Swift
Stars: ✭ 215 (+1031.58%)
Mutual labels:  operations
VAOS
Virtual Aviation Operations System
Stars: ✭ 44 (+131.58%)
Mutual labels:  operations
Cloud Ops Sandbox
Cloud Operations Sandbox is an open source tool that helps practitioners to learn Service Reliability Engineering practices from Google and apply them on their cloud services using Cloud Operations suite of tools.
Stars: ✭ 191 (+905.26%)
Mutual labels:  operations
cloudstackOps
Handy tools to operate a CloudStack cloud
Stars: ✭ 47 (+147.37%)
Mutual labels:  operations
Juju
Universal Operator Lifecycle Manager (OLM) for Kubernetes operators, and operators for traditional Linux and Windows apps, with declarative integration between operators for automated microservice integration.
Stars: ✭ 1,942 (+10121.05%)
Mutual labels:  operations
hubot-pager-me
PagerDuty integration for Hubot
Stars: ✭ 74 (+289.47%)
Mutual labels:  pagerduty
terraform-google-bootstrap
Bootstraps Terraform usage and related CI/CD in a new Google Cloud organization
Stars: ✭ 152 (+700%)
Mutual labels:  operations
node-pagerduty
⛔️ DEPRECATED - PagerDuty v2 API Wrapper for Node
Stars: ✭ 19 (+0%)
Mutual labels:  pagerduty
terraform-google-slo
Creates SLOs on Google Cloud from custom Stackdriver metrics capability to export SLOs to Google Cloud services and other systems
Stars: ✭ 59 (+210.53%)
Mutual labels:  operations

PagerDuty Operational Review Documentation Netlify Status

This is a public version of the Operational Review framework that PagerDuty is adapting and implementing internally. It is used to ensure that PagerDuty leadership is aligned on the impact that real-time, digital operations have on our business outcomes. See the About page for more information.

You can view the documentation directly in this repository, or rendered as a website at https://reviews.pagerduty.com.

Operational Reviews

Development

We use MkDocs to create a static site from this repository.

Native

For local development on your native device,

  1. Install MkDocs. pip install mkdocs
  2. Install MkDocs PyMdown Extensions. pip install pymdown-extensions
  3. Install Pygments if you want syntax highlighting for any code examples. pip install pygments
  4. Install the PagerDuty MkDocs Theme.
    1. git clone https://github.com/pagerduty/mkdocs-theme-pagerduty
    2. cd mkdocs-theme-pagerduty & python3 setup.py install
  5. To test locally, run mkdocs serve from the project directory.
  6. You can now view the website in your browser at http://127.0.0.1:8000. The site will automatically update as you edit the code.

Docker

For local development using Docker,

  1. Build the docker image and load it for immediate use. docker build --load -t mkdocs .
  2. Run the container and pass through your current working directory. docker run -v $(pwd):/docs -p 127.0.0.1:8000:8000 mkdocs
  3. You can now view the website in your browser at http://127.0.0.1:8000. The site will automatically update as you edit the code.

Note: If you're using an Apple Silicon device, add --platform linux/arm64/v8 to the docker build command to get a native Apple Silicon image. That will work faster than translating an arm64 image.

Deploying

  1. Run mkdocs build --clean to produce the static site for upload.

  2. Upload the site directory to S3 (or wherever you would like it to be hosted).

     aws s3 sync ./site/ s3://[BUCKET_NAME] \
       --acl public-read \
       --exclude "*.py*" \
       --delete
    

License

Apache 2 (See LICENSE file)

Contributing

Thank you for considering contributing! If you have any questions, just ask - or submit your issue or pull request anyway. The worst that can happen is we'll politely ask you to change something. We appreciate all friendly contributions.

Here is our preferred process for submitting a pull request,

  1. Fork it ( https://github.com/PagerDuty/operational-review-docs/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].