Skip to content
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

Add new Page for DR #7425

Merged
merged 40 commits into from
Sep 27, 2022
Merged

Add new Page for DR #7425

merged 40 commits into from
Sep 27, 2022

Conversation

punitmundra
Copy link
Collaborator

Signed-off-by: punitmundra punitmundra2008@gmail.com

πŸ”© Description: What code changed, and why?

⛓️ Related Resources

πŸ‘ Definition of Done

πŸ‘Ÿ How to Build and Test the Change

βœ… Checklist

All PRs must tick these:

With occasional exceptions, all PRs from Progress employees must tick these:

  • Is the code clear? (complicated code or lots of comments--subdivide and use well-named methods, meaningful variable names, etc.)
  • Consistency checked? (user notifications, user prompts, visual patterns, code patterns, variable names)
  • Repeated code blocks eliminated? (adapt and reuse existing components, blocks, functions, etc.)
  • Spelling, grammar, typos checked? (at a minimum use make spell in any component directory)
  • Code well-formatted? (indents, line breaks, etc. improve rather than hinder readability)

All PRs from Progress employees should tick these if appropriate:

  • Tests added/updated? (all new code needs new tests)
  • Docs added/updated? (all customer-facing changes)

Please add a note next to any checkbox above if you are NOT ticking it.

πŸ“· Screenshots, if applicable

Signed-off-by: punitmundra <punitmundra2008@gmail.com>
@punitmundra punitmundra requested a review from a team as a code owner September 20, 2022 11:09
@netlify
Copy link

netlify bot commented Sep 20, 2022

βœ… Deploy Preview for chef-automate ready!

Name Link
πŸ”¨ Latest commit 5f161b3
πŸ” Latest deploy log https://app.netlify.com/sites/chef-automate/deploys/633310d3ed81d50009ea9227
😎 Deploy Preview https://deploy-preview-7425--chef-automate.netlify.app
πŸ“± Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site settings.

@github-actions github-actions bot added the documentation Anything related to the Automate docs. label Sep 20, 2022
punitmundra and others added 22 commits September 20, 2022 16:47
Signed-off-by: punitmundra <punitmundra2008@gmail.com>
Signed-off-by: punitmundra <punitmundra2008@gmail.com>
Signed-off-by: punitmundra <punitmundra2008@gmail.com>
Signed-off-by: punitmundra <punitmundra2008@gmail.com>
Signed-off-by: punitmundra <punitmundra2008@gmail.com>
Signed-off-by: punitmundra <punitmundra2008@gmail.com>
Signed-off-by: punitmundra <punitmundra2008@gmail.com>
Signed-off-by: punitmundra <punitmundra2008@gmail.com>
Signed-off-by: punitmundra <punitmundra2008@gmail.com>
Signed-off-by: punitmundra <punitmundra2008@gmail.com>
Signed-off-by: punitmundra <punitmundra2008@gmail.com>
Signed-off-by: punitmundra <punitmundra2008@gmail.com>
Signed-off-by: punitmundra <punitmundra2008@gmail.com>
Signed-off-by: punitmundra <punitmundra2008@gmail.com>
Signed-off-by: punitmundra <punitmundra2008@gmail.com>
Signed-off-by: punitmundra <punitmundra2008@gmail.com>
Signed-off-by: Arvinth C <arvinth.chandrasekaran@progress.com>
Signed-off-by: Arvinth C <arvinth.chandrasekaran@progress.com>
Signed-off-by: Arvinth C <arvinth.chandrasekaran@progress.com>
Signed-off-by: Arvinth C <arvinth.chandrasekaran@progress.com>
Signed-off-by: Arvinth C <arvinth.chandrasekaran@progress.com>
Signed-off-by: punitmundra <punitmundra2008@gmail.com>
Signed-off-by: punitmundra <punitmundra2008@gmail.com>
Signed-off-by: punitmundra <punitmundra2008@gmail.com>
Signed-off-by: punitmundra <punitmundra2008@gmail.com>
Signed-off-by: punitmundra <punitmundra2008@gmail.com>
ArvinthC3000 and others added 3 commits September 23, 2022 16:39
Signed-off-by: Dishank Tiwari <dtiwari@progress.com>
Signed-off-by: Dishank Tiwari <dtiwari@progress.com>
Signed-off-by: punitmundra <punitmundra2008@gmail.com>
Signed-off-by: punitmundra <punitmundra2008@gmail.com>
Signed-off-by: punitmundra <punitmundra2008@gmail.com>
Signed-off-by: punitmundra <punitmundra2008@gmail.com>
Signed-off-by: punitmundra <punitmundra2008@gmail.com>
Copy link
Contributor

@teknofire teknofire left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We need to add something to the documentation about how to properly delete old backups. The reason for this is that the more backups that are stored, the longer it takes for OpenSearch snapshots to complete. Also when using AWS S3 storage it will increase the cost as it will need to perform several API calls for each snapshot that is being store.

For the A2HA documentation we included a snippet like this for how to do that

export KEEP=10; export HAB_LICENSE=accept-no-persist; chef-automate backup list --result-json backup.json > /dev/null && hab pkg exec core/jq-static jq "[.result.backups[].id] | sort | reverse | .[]" -rM backup.json | tail -n +$(($KEEP+1)) | xargs -L1 -i chef-automate backup delete --yes {}

components/docs-chef-io/content/automate/DR.md Outdated Show resolved Hide resolved
components/docs-chef-io/content/automate/DR.md Outdated Show resolved Hide resolved
components/docs-chef-io/content/automate/DR.md Outdated Show resolved Hide resolved
components/docs-chef-io/content/automate/DR.md Outdated Show resolved Hide resolved
components/docs-chef-io/content/automate/DR.md Outdated Show resolved Hide resolved
components/docs-chef-io/content/automate/DR.md Outdated Show resolved Hide resolved
components/docs-chef-io/content/automate/DR.md Outdated Show resolved Hide resolved
components/docs-chef-io/content/automate/DR.md Outdated Show resolved Hide resolved
components/docs-chef-io/content/automate/DR.md Outdated Show resolved Hide resolved
components/docs-chef-io/content/automate/DR.md Outdated Show resolved Hide resolved
punitmundra and others added 4 commits September 27, 2022 14:33
Signed-off-by: punitmundra <punitmundra2008@gmail.com>
Signed-off-by: punitmundra <punitmundra2008@gmail.com>
Signed-off-by: punitmundra <punitmundra2008@gmail.com>
Signed-off-by: Dishank Tiwari <dtiwari@progress.com>
@sonarcloud
Copy link

sonarcloud bot commented Sep 27, 2022

Kudos, SonarCloud Quality Gate passed!Β  Β  Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
No Duplication information No Duplication information

@IanMadd IanMadd merged commit cbe011d into main Sep 27, 2022
@IanMadd IanMadd deleted the DR-docs branch September 27, 2022 16:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Anything related to the Automate docs.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants