-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[DOCS-10133] [DOCS-10131] Review/edit CloudBees CD/RO blueprint add-on documentation and diagrams #22
Merged
Merged
[DOCS-10133] [DOCS-10131] Review/edit CloudBees CD/RO blueprint add-on documentation and diagrams #22
Changes from 19 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
5ac75aa
First pass at copy editing the CD/RO blueprint add-on
kellie-freeman 812302b
Minor edits
kellie-freeman 19c24a7
Commented out sections to hide them for now.
kellie-freeman 6748652
Update CONTRIBUTING.md
kellie-freeman a320ba1
Fixed some problems
kellie-freeman dbec0d3
Update variables.tf
kellie-freeman ca43e60
Update .gitignore
kellie-freeman 7de70cb
Minor edits to the getting started diagrams
kellie-freeman c33805c
Update at-scale.architect.drawio.svg
kellie-freeman 178c4a8
Update at-scale.architect.drawio.svg
kellie-freeman 690bec1
Recreated SVG
kellie-freeman e53791c
Recreated SVGs
kellie-freeman a766491
Copy edits
kellie-freeman 144b74b
Update at-scale.architect.drawio.svg
kellie-freeman 1dadeef
Update CONTRIBUTING.md
kellie-freeman c59b1ab
Update README.md
kellie-freeman 53d2008
Update README.md
kellie-freeman f31aece
Update CODEOWNERS
kellie-freeman 5bb695c
Revert "Update CODEOWNERS"
kellie-freeman 97b89b6
Update README.md
kellie-freeman File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,55 @@ | ||
# Contributing | ||
|
||
This document provides guidelines for contributing to the module. | ||
This document provides guidelines for contributing to the CloudBees CD/RO add-on for Amazon EKS blueprints. | ||
|
||
## Dependencies | ||
|
||
Validate your changes inside the blueprint-agent described in [.Dockerfile](blueprints/Dockerfile). It can be run `make dBuildAndRun`. | ||
Validate your changes inside the blueprint agent, as described in [Dockerfile](blueprints/Dockerfile). For example, it can be used to run `make dBuildAndRun`. | ||
|
||
## Pre-commits: Linting, Formatting and Secrets Scanning | ||
## Report bugs and feature requests | ||
|
||
CloudBees welcomes you to use the GitHub issue tracker to report bugs or suggest features. | ||
|
||
When filing an issue: | ||
|
||
1. Check existing open and recently closed [issues](https://github.com/cloudbees/terraform-aws-cloudbees-cd-eks-addon/issues) to ensure the issue has not already been reported. | ||
1. Review the upstream repositories: | ||
- [aws-ia/terraform-aws-eks-blueprints](https://github.com/aws-ia/terraform-aws-eks-blueprints/issues) | ||
- [aws-ia/terraform-aws-eks-blueprints-addons](https://github.com/aws-ia/terraform-aws-eks-blueprints-addons/issues) | ||
1. Try to include as much information as you can. Details like the following are incredibly useful: | ||
- A reproducible test case or series of steps | ||
- The version of code being used | ||
- Any modifications you have made relevant to the bug | ||
- Anything unusual about your environment or deployment | ||
|
||
## Contribute via pull requests | ||
|
||
Many of the files in the repository can be linted or formatted to | ||
maintain a standard of quality. | ||
Contributions via pull requests are appreciated. Before submitting a pull request, please ensure that you: | ||
|
||
Additionally, secret leaks are watched via gitleaks and git-secrets. | ||
1. Are working against the latest source on the `main` branch. | ||
1. Check existing open, and recently merged, pull requests to make sure someone else has not already addressed the problem. | ||
1. Open an issue to discuss any significant work; we do not want your time to be wasted. | ||
|
||
To submit a pull request: | ||
|
||
1. Fork the repository. | ||
1. Create a feature branch based on the `main` branch. | ||
1. Modify the source and focus on the specific change you are contributing. For example, if you reformat all the code, it is hard for reviewers to focus on your specific change. | ||
1. **Ensure that local tests pass**. Local tests can be orchestrated via the companion [Makefile](Makefile). | ||
1. Make commits to your fork using clear commit messages. | ||
1. Submit a pull request against the `main` branch and answer any default questions in the pull request interface. | ||
1. Pay attention to any automated failures reported in the pull request, and stay involved in the conversation. | ||
|
||
> [!IMPORTANT] | ||
> If you make updates to the embedded repository, you must push the changes to the public upstream (repository/branch) before running `terraform apply` locally. The endpoint and/or branch can be updated via the companion [Makefile](Makefile). | ||
|
||
## Pre-commits: Linting, Formatting and Secrets Scanning | ||
|
||
When working with the repository for the first time run pre-commit | ||
Many of the files in the repository can be linted or formatted to maintain a standard of quality. Additionally, secret leaks are watched via [gitleaks](https://github.com/zricethezav/gitleaks#pre-commit) and [git-secrets](https://github.com/awslabs/git-secrets). | ||
|
||
Run `pre-commit install` | ||
Run `pre-commit run --all-files` | ||
1. When working with the repository for the first time, you must install `pre-commit`. For more information, refer to [pre-commit installation](https://pre-commit.com/#installation). | ||
1. Run `pre-commit run --all-files`. Run this command again if the automated checks fail when you create a pull request. | ||
|
||
## Release Drafter | ||
|
||
This repository uses [Release Drafter](https://github.com/release-drafter/release-drafter) thus it is recommended to use [Semantic Commit Messages](https://gist.github.com/joshbuchea/6f47e86d2510bce28f8e7f42ae84c716) to ease labelling your Pull Request accordingly. | ||
This repository uses [Release Drafter](https://github.com/release-drafter/release-drafter). Therefore, it is recommended that you use [Semantic Commit Messages](https://gist.github.com/joshbuchea/6f47e86d2510bce28f8e7f42ae84c716) to label your pull requests accordingly. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we have another hosted image we can use with the new branding, to replace this one?