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 how to guide on Secret stores #834

Merged
merged 18 commits into from
Oct 16, 2023
Merged

Add how to guide on Secret stores #834

merged 18 commits into from
Oct 16, 2023

Conversation

Reshrahim
Copy link
Contributor

@Reshrahim Reshrahim commented Oct 12, 2023

Thank you for helping make the Radius documentation better!

Please follow this checklist before submitting:

  • Read the contribution guide
  • Commands include options for Linux, MacOS, and Windows within codetabs
  • New file and folder names are globally unique
  • Page references use shortcodes instead of markdown or URL links
  • Images use HTML style and have alternative text
  • Places where multiple code/command options are given have codetabs

In addition, please fill out the following to help reviewers understand this pull request:

Description

Auto-generated description

🤖 Generated by Copilot at 187c97a

Summary

📝📄🔄

This pull request adds and updates documentation on secrets in Radius applications. It introduces a new how-to guide on secret store with code snippets and examples, and it modifies the overview page on secrets to link to the new guide and adjust the menu position.

Oh, we're the docs team of Radius, and we write with skill and grace
We add new guides and snippets, to help you with the secret store
So heave away, me hearties, and pull the bicep code along
We'll update the overview page, and sing this merry song

Walkthrough

  • Add a new how-to guide on secret store, which is a tutorial on how to create or reference a secret store resource in a Radius application (link)
    • Include the front matter metadata, the pre-requisites, the steps, and the further reading sections for the guide (link)
    • Add a new bicep file for the snippets of code used in the guide, which show how to import the secrets module, define the parameters, create the application resource, and use the secrets module to create or reference a secret store resource (link)
  • Update the overview page on secrets, which is an introduction to the secrets feature in Radius (link,link)
    • Change the weight value in the front matter metadata to make the overview page appear before the how-to guide in the navigation menu (link)
    • Remove the code snippets and the detailed explanations from the section on creating or referencing a secret store and replace them with a link to the how-to guide, which is a more appropriate place for the code and the steps (link)
    • Update the section title to reflect the link (link)

Issue reference

Fixes: #717

@Reshrahim Reshrahim requested review from a team as code owners October 12, 2023 15:11
Copy link
Contributor

@jasonviviano jasonviviano left a comment

Choose a reason for hiding this comment

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

LGTM

Copy link
Contributor

@willtsai willtsai left a comment

Choose a reason for hiding this comment

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

I agree with @AaronCrawfis offline feedback that it might be better to split this into two guides for new and existing secrets

@Reshrahim Reshrahim temporarily deployed to latest October 13, 2023 19:24 — with GitHub Actions Inactive
@Reshrahim Reshrahim changed the base branch from edge to v0.26 October 13, 2023 19:24
@Reshrahim Reshrahim requested a review from willtsai October 13, 2023 19:28
name: 'existing-appcert'
properties:{
application: application
resource: 'secret-app-existing-secret' // Reference to the name of an external Kubernetes secret store
Copy link
Contributor

Choose a reason for hiding this comment

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

Can we add a step to create this? Kubectl will probably be easiest:

https://kubernetes.io/docs/tasks/configmap-secret/managing-secret-using-kubectl/

Comment on lines 33 to 41
## Step 3: Verify the secrets are deployed

Use the below command to verify if the secret got deployed

```bash
kubectl get secret -n default-docs
```

You will find `appCert` of type kubernetes.io/tls automatically created.
Copy link
Contributor

Choose a reason for hiding this comment

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

I think this will verify that the existing secret store was created, not that Radius did anything. Although, this is tricky because we don't have the ability to get secrets out of a Radius secret store other than through TLS support. @rynowak @willtsai thoughts? How do we "prove" that a secret store in Radius "can be used"?

@secure()
param tlskey string

resource appCert 'Applications.Core/secretStores@2023-10-01-preview' = {
Copy link
Contributor

Choose a reason for hiding this comment

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

Instead of type certificate let's use type generic and pass in a string like "SuperSecretString" to show the value being retrieved from the Kubernetes secret, not just that it exists.

@Reshrahim Reshrahim temporarily deployed to latest October 16, 2023 13:15 — with GitHub Actions Inactive
@AaronCrawfis AaronCrawfis merged commit 6d23914 into v0.26 Oct 16, 2023
7 of 8 checks passed
@AaronCrawfis AaronCrawfis deleted the re/secretstores branch October 16, 2023 22:29
@AaronCrawfis AaronCrawfis temporarily deployed to latest October 16, 2023 22:29 — with GitHub Actions Inactive
AaronCrawfis added a commit that referenced this pull request Oct 18, 2023
* Merge edge to v0.26 (#838)

* Add how-to guide on local dev recipes  (#822)

* Add supported resource types

* Add how-to guideto use local dev recipes

* Apply suggestions from code review

Co-authored-by: Jonathan Smith <[email protected]>

* Update docs/content/guides/recipes/howto-dev-recipes/index.md

* Adddress feedback

* Address feedback

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

* Minor tweaks

* minor tweaks

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Standardize pre-reqs for all how-tos (#836)

* Standardixe pre-reqs for all how-tos

* Update docs/content/guides/author-apps/azure/howto-azure-resources/index.md

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Sanitize docs for release references (#837)

* Add how-to guide on local dev recipes  (#822)

* Add supported resource types

* Add how-to guideto use local dev recipes

* Apply suggestions from code review

Co-authored-by: Jonathan Smith <[email protected]>

* Update docs/content/guides/recipes/howto-dev-recipes/index.md

* Adddress feedback

* Address feedback

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

* Minor tweaks

* minor tweaks

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Sanitize docs for release references

* Revert spelling fix

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Add Codespace docs

Signed-off-by: Aaron Crawfis <[email protected]>

* Update instructions for `How To Configure AWS Provider` (#839)

* Fixing a typo from the rad install kubernetes command (#846)

* Update pull_request_template.md (#844)

* Update steps after port forward to view the contents of /tmpdir (#847)

Update steps after port forward to view the contents of /tmpdir

Co-authored-by: Aaron Crawfis <[email protected]>

* Updating the initialization verification doc (#843)

Co-authored-by: Aaron Crawfis <[email protected]>

* Update index.md with '<container_name>' instead of 'frontend' (#848)

In commend to 'inspect container logs' update current value 'frontend' with a more generic '<container_name>' similar to other commands in the document

* Updating How To Connect Dependencies doc (#850)

* Multi-cloud and OSS concept doc (#821)

* 1st draft of multi-cloud and OSS concept doc

* Fixing spelling errors

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

* Update to correct open-source spelling

Co-authored-by: Aaron Crawfis <[email protected]>

* Changing doc weight to 100 per Aaron.

Co-authored-by: Aaron Crawfis <[email protected]>

* Apply break after header

Co-authored-by: Aaron Crawfis <[email protected]>

* Correct spelling error for "application"

Co-authored-by: Ryan Nowak <[email protected]>

* Add blank line after heading

Co-authored-by: Aaron Crawfis <[email protected]>

* Add blank line after heading

Co-authored-by: Aaron Crawfis <[email protected]>

* Include Helm charts in description of deployment assets

Co-authored-by: Ryan Nowak <[email protected]>

* Amazon S3 is not valid Dapr state store, so use DynamoDB instead

Co-authored-by: Ryan Nowak <[email protected]>

* More substantial changes based on Nowak's feedback

* Updating en-custom.txt spelling

* Put the "Concept:" in quotes to prevent build errors

Co-authored-by: Ryan Nowak <[email protected]>

* Get more specific about publicly available

Co-authored-by: Ryan Nowak <[email protected]>

* Update docs/content/concepts/multi-cloud-concept/index.md

Co-authored-by: Aaron Crawfis <[email protected]>

* Spellcheck

---------

Co-authored-by: Aaron Crawfis <[email protected]>
Co-authored-by: Ryan Nowak <[email protected]>

* Update index.md (#854)

Updating local dev recipes docs to use correct pod name

* Update link to initialize page (#853)

* Update link

Signed-off-by: Aaron Crawfis <[email protected]>

* Update vscode link

Signed-off-by: Aaron Crawfis <[email protected]>

---------

Signed-off-by: Aaron Crawfis <[email protected]>

* Update copy logic (#855)

Signed-off-by: Aaron Crawfis <[email protected]>

* Fix code formatting (#856)

* Add how to guide on Secret stores (#834)

* Add supported resource types

* Add how-to secret store

* Split into two howto-s

* Fix ref

* Updates

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

* Adddress feedback

* Address feedback

---------

Co-authored-by: Aaron Crawfis <[email protected]>

* Fix installation instructions

Signed-off-by: Aaron Crawfis <[email protected]>

* Add pre-requisites

Signed-off-by: Aaron Crawfis <[email protected]>

* Update api-ucp.md (#859)

* Update index.md (#858)

* Update index.md

Update to verify Helm installation

* nit

Co-authored-by: Aaron Crawfis <[email protected]>

* Spellcheck

Signed-off-by: Aaron Crawfis <[email protected]>

---------

Signed-off-by: Aaron Crawfis <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Update title

Signed-off-by: Aaron Crawfis <[email protected]>

* Add docs to install Radius Bicep extension from VSCode marketplace (#865)

* Add docs to install Radius Bicep extension from VSCode marketplace

* Revert wrong upd

* Revert upd to initialize

* Update docs/shared-content/installation/install-radius/initialize-radius.md

* Update docs/shared-content/installation/vscode-bicep/install-vscode-bicep.md

Co-authored-by: Aaron Crawfis <[email protected]>

---------

Co-authored-by: Aaron Crawfis <[email protected]>

* Update get.radapp.dev references (#866)

* Switch to radapp.io

Signed-off-by: Aaron Crawfis <[email protected]>

* add link to blog (#875)

Signed-off-by: Will Tsai <[email protected]>

* Remove clarity AAD integration

Signed-off-by: Aaron Crawfis <[email protected]>

* revert config changes

* revert config changes

---------

Signed-off-by: Aaron Crawfis <[email protected]>
Signed-off-by: Aaron Crawfis <[email protected]>
Signed-off-by: Will Tsai <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>
Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Karishma Chawla <[email protected]>
Co-authored-by: Vishwanath Hiremath <[email protected]>
Co-authored-by: Shalabh Mohan Shrivastava <[email protected]>
Co-authored-by: Lakshmi Javadekar <[email protected]>
Co-authored-by: Yetkin Timocin <[email protected]>
Co-authored-by: Ryan Waite <[email protected]>
Co-authored-by: Ryan Nowak <[email protected]>
Co-authored-by: Shruthi Kumar <[email protected]>
Co-authored-by: Will <[email protected]>
Reshrahim added a commit that referenced this pull request Oct 18, 2023
* Adding "Why Radius?" concept doc (#827)

* Adding "Why Radius?" concept doc

* Apply suggestions from code review

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Ryan Waite <[email protected]>

* More feedback

* third draft

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Ryan Waite <[email protected]>

* Update rad CLI documentation (#868)

* Autogenerate rad CLI reference docs

* Spellcheck

---------

Co-authored-by: rad-ci-bot <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Autogenerate rad CLI reference docs (#872)

Co-authored-by: rad-ci-bot <[email protected]>

* Autogenerate rad CLI reference docs (#873)

Co-authored-by: rad-ci-bot <[email protected]>

* Autogenerate rad CLI reference docs (#874)

Co-authored-by: rad-ci-bot <[email protected]>

* Upmerge 10-18-2023 (#877)

* Merge edge to v0.26 (#838)

* Add how-to guide on local dev recipes  (#822)

* Add supported resource types

* Add how-to guideto use local dev recipes

* Apply suggestions from code review

Co-authored-by: Jonathan Smith <[email protected]>

* Update docs/content/guides/recipes/howto-dev-recipes/index.md

* Adddress feedback

* Address feedback

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

* Minor tweaks

* minor tweaks

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Standardize pre-reqs for all how-tos (#836)

* Standardixe pre-reqs for all how-tos

* Update docs/content/guides/author-apps/azure/howto-azure-resources/index.md

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Sanitize docs for release references (#837)

* Add how-to guide on local dev recipes  (#822)

* Add supported resource types

* Add how-to guideto use local dev recipes

* Apply suggestions from code review

Co-authored-by: Jonathan Smith <[email protected]>

* Update docs/content/guides/recipes/howto-dev-recipes/index.md

* Adddress feedback

* Address feedback

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

* Minor tweaks

* minor tweaks

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Sanitize docs for release references

* Revert spelling fix

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Add Codespace docs

Signed-off-by: Aaron Crawfis <[email protected]>

* Update instructions for `How To Configure AWS Provider` (#839)

* Fixing a typo from the rad install kubernetes command (#846)

* Update pull_request_template.md (#844)

* Update steps after port forward to view the contents of /tmpdir (#847)

Update steps after port forward to view the contents of /tmpdir

Co-authored-by: Aaron Crawfis <[email protected]>

* Updating the initialization verification doc (#843)

Co-authored-by: Aaron Crawfis <[email protected]>

* Update index.md with '<container_name>' instead of 'frontend' (#848)

In commend to 'inspect container logs' update current value 'frontend' with a more generic '<container_name>' similar to other commands in the document

* Updating How To Connect Dependencies doc (#850)

* Multi-cloud and OSS concept doc (#821)

* 1st draft of multi-cloud and OSS concept doc

* Fixing spelling errors

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

* Update to correct open-source spelling

Co-authored-by: Aaron Crawfis <[email protected]>

* Changing doc weight to 100 per Aaron.

Co-authored-by: Aaron Crawfis <[email protected]>

* Apply break after header

Co-authored-by: Aaron Crawfis <[email protected]>

* Correct spelling error for "application"

Co-authored-by: Ryan Nowak <[email protected]>

* Add blank line after heading

Co-authored-by: Aaron Crawfis <[email protected]>

* Add blank line after heading

Co-authored-by: Aaron Crawfis <[email protected]>

* Include Helm charts in description of deployment assets

Co-authored-by: Ryan Nowak <[email protected]>

* Amazon S3 is not valid Dapr state store, so use DynamoDB instead

Co-authored-by: Ryan Nowak <[email protected]>

* More substantial changes based on Nowak's feedback

* Updating en-custom.txt spelling

* Put the "Concept:" in quotes to prevent build errors

Co-authored-by: Ryan Nowak <[email protected]>

* Get more specific about publicly available

Co-authored-by: Ryan Nowak <[email protected]>

* Update docs/content/concepts/multi-cloud-concept/index.md

Co-authored-by: Aaron Crawfis <[email protected]>

* Spellcheck

---------

Co-authored-by: Aaron Crawfis <[email protected]>
Co-authored-by: Ryan Nowak <[email protected]>

* Update index.md (#854)

Updating local dev recipes docs to use correct pod name

* Update link to initialize page (#853)

* Update link

Signed-off-by: Aaron Crawfis <[email protected]>

* Update vscode link

Signed-off-by: Aaron Crawfis <[email protected]>

---------

Signed-off-by: Aaron Crawfis <[email protected]>

* Update copy logic (#855)

Signed-off-by: Aaron Crawfis <[email protected]>

* Fix code formatting (#856)

* Add how to guide on Secret stores (#834)

* Add supported resource types

* Add how-to secret store

* Split into two howto-s

* Fix ref

* Updates

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

* Adddress feedback

* Address feedback

---------

Co-authored-by: Aaron Crawfis <[email protected]>

* Fix installation instructions

Signed-off-by: Aaron Crawfis <[email protected]>

* Add pre-requisites

Signed-off-by: Aaron Crawfis <[email protected]>

* Update api-ucp.md (#859)

* Update index.md (#858)

* Update index.md

Update to verify Helm installation

* nit

Co-authored-by: Aaron Crawfis <[email protected]>

* Spellcheck

Signed-off-by: Aaron Crawfis <[email protected]>

---------

Signed-off-by: Aaron Crawfis <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Update title

Signed-off-by: Aaron Crawfis <[email protected]>

* Add docs to install Radius Bicep extension from VSCode marketplace (#865)

* Add docs to install Radius Bicep extension from VSCode marketplace

* Revert wrong upd

* Revert upd to initialize

* Update docs/shared-content/installation/install-radius/initialize-radius.md

* Update docs/shared-content/installation/vscode-bicep/install-vscode-bicep.md

Co-authored-by: Aaron Crawfis <[email protected]>

---------

Co-authored-by: Aaron Crawfis <[email protected]>

* Update get.radapp.dev references (#866)

* Switch to radapp.io

Signed-off-by: Aaron Crawfis <[email protected]>

* add link to blog (#875)

Signed-off-by: Will Tsai <[email protected]>

* Remove clarity AAD integration

Signed-off-by: Aaron Crawfis <[email protected]>

* revert config changes

* revert config changes

---------

Signed-off-by: Aaron Crawfis <[email protected]>
Signed-off-by: Aaron Crawfis <[email protected]>
Signed-off-by: Will Tsai <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>
Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Karishma Chawla <[email protected]>
Co-authored-by: Vishwanath Hiremath <[email protected]>
Co-authored-by: Shalabh Mohan Shrivastava <[email protected]>
Co-authored-by: Lakshmi Javadekar <[email protected]>
Co-authored-by: Yetkin Timocin <[email protected]>
Co-authored-by: Ryan Waite <[email protected]>
Co-authored-by: Ryan Nowak <[email protected]>
Co-authored-by: Shruthi Kumar <[email protected]>
Co-authored-by: Will <[email protected]>

* Revert config changes

---------

Signed-off-by: Aaron Crawfis <[email protected]>
Signed-off-by: Aaron Crawfis <[email protected]>
Signed-off-by: Will Tsai <[email protected]>
Co-authored-by: Ryan Nowak <[email protected]>
Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Ryan Waite <[email protected]>
Co-authored-by: rad-ci-bot <[email protected]>
Co-authored-by: rad-ci-bot <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>
Co-authored-by: Karishma Chawla <[email protected]>
Co-authored-by: Vishwanath Hiremath <[email protected]>
Co-authored-by: Shalabh Mohan Shrivastava <[email protected]>
Co-authored-by: Lakshmi Javadekar <[email protected]>
Co-authored-by: Yetkin Timocin <[email protected]>
Co-authored-by: Shruthi Kumar <[email protected]>
Co-authored-by: Will <[email protected]>
Reshrahim added a commit that referenced this pull request Oct 26, 2023
* Merge edge to v0.26 (#838)

* Add how-to guide on local dev recipes  (#822)

* Add supported resource types

* Add how-to guideto use local dev recipes

* Apply suggestions from code review

Co-authored-by: Jonathan Smith <[email protected]>

* Update docs/content/guides/recipes/howto-dev-recipes/index.md

* Adddress feedback

* Address feedback

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

* Minor tweaks

* minor tweaks

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Standardize pre-reqs for all how-tos (#836)

* Standardixe pre-reqs for all how-tos

* Update docs/content/guides/author-apps/azure/howto-azure-resources/index.md

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Sanitize docs for release references (#837)

* Add how-to guide on local dev recipes  (#822)

* Add supported resource types

* Add how-to guideto use local dev recipes

* Apply suggestions from code review

Co-authored-by: Jonathan Smith <[email protected]>

* Update docs/content/guides/recipes/howto-dev-recipes/index.md

* Adddress feedback

* Address feedback

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

* Minor tweaks

* minor tweaks

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Sanitize docs for release references

* Revert spelling fix

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Add Codespace docs

Signed-off-by: Aaron Crawfis <[email protected]>

* Update instructions for `How To Configure AWS Provider` (#839)

* Fixing a typo from the rad install kubernetes command (#846)

* Update pull_request_template.md (#844)

* Update steps after port forward to view the contents of /tmpdir (#847)

Update steps after port forward to view the contents of /tmpdir

Co-authored-by: Aaron Crawfis <[email protected]>

* Updating the initialization verification doc (#843)

Co-authored-by: Aaron Crawfis <[email protected]>

* Update index.md with '<container_name>' instead of 'frontend' (#848)

In commend to 'inspect container logs' update current value 'frontend' with a more generic '<container_name>' similar to other commands in the document

* Updating How To Connect Dependencies doc (#850)

* Multi-cloud and OSS concept doc (#821)

* 1st draft of multi-cloud and OSS concept doc

* Fixing spelling errors

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

* Update to correct open-source spelling

Co-authored-by: Aaron Crawfis <[email protected]>

* Changing doc weight to 100 per Aaron.

Co-authored-by: Aaron Crawfis <[email protected]>

* Apply break after header

Co-authored-by: Aaron Crawfis <[email protected]>

* Correct spelling error for "application"

Co-authored-by: Ryan Nowak <[email protected]>

* Add blank line after heading

Co-authored-by: Aaron Crawfis <[email protected]>

* Add blank line after heading

Co-authored-by: Aaron Crawfis <[email protected]>

* Include Helm charts in description of deployment assets

Co-authored-by: Ryan Nowak <[email protected]>

* Amazon S3 is not valid Dapr state store, so use DynamoDB instead

Co-authored-by: Ryan Nowak <[email protected]>

* More substantial changes based on Nowak's feedback

* Updating en-custom.txt spelling

* Put the "Concept:" in quotes to prevent build errors

Co-authored-by: Ryan Nowak <[email protected]>

* Get more specific about publicly available

Co-authored-by: Ryan Nowak <[email protected]>

* Update docs/content/concepts/multi-cloud-concept/index.md

Co-authored-by: Aaron Crawfis <[email protected]>

* Spellcheck

---------

Co-authored-by: Aaron Crawfis <[email protected]>
Co-authored-by: Ryan Nowak <[email protected]>

* Update index.md (#854)

Updating local dev recipes docs to use correct pod name

* Update link to initialize page (#853)

* Update link

Signed-off-by: Aaron Crawfis <[email protected]>

* Update vscode link

Signed-off-by: Aaron Crawfis <[email protected]>

---------

Signed-off-by: Aaron Crawfis <[email protected]>

* Update copy logic (#855)

Signed-off-by: Aaron Crawfis <[email protected]>

* Fix code formatting (#856)

* Add how to guide on Secret stores (#834)

* Add supported resource types

* Add how-to secret store

* Split into two howto-s

* Fix ref

* Updates

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

* Adddress feedback

* Address feedback

---------

Co-authored-by: Aaron Crawfis <[email protected]>

* Fix installation instructions

Signed-off-by: Aaron Crawfis <[email protected]>

* Add pre-requisites

Signed-off-by: Aaron Crawfis <[email protected]>

* Update api-ucp.md (#859)

* Update index.md (#858)

* Update index.md

Update to verify Helm installation

* nit

Co-authored-by: Aaron Crawfis <[email protected]>

* Spellcheck

Signed-off-by: Aaron Crawfis <[email protected]>

---------

Signed-off-by: Aaron Crawfis <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Update title

Signed-off-by: Aaron Crawfis <[email protected]>

* Add docs to install Radius Bicep extension from VSCode marketplace (#865)

* Add docs to install Radius Bicep extension from VSCode marketplace

* Revert wrong upd

* Revert upd to initialize

* Update docs/shared-content/installation/install-radius/initialize-radius.md

* Update docs/shared-content/installation/vscode-bicep/install-vscode-bicep.md

Co-authored-by: Aaron Crawfis <[email protected]>

---------

Co-authored-by: Aaron Crawfis <[email protected]>

* Update get.radapp.dev references (#866)

* Switch to radapp.io

Signed-off-by: Aaron Crawfis <[email protected]>

* add link to blog (#875)

Signed-off-by: Will Tsai <[email protected]>

* Remove clarity AAD integration

Signed-off-by: Aaron Crawfis <[email protected]>

* Downmerge 10-18-2023 (#878)

* Adding "Why Radius?" concept doc (#827)

* Adding "Why Radius?" concept doc

* Apply suggestions from code review

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Ryan Waite <[email protected]>

* More feedback

* third draft

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Ryan Waite <[email protected]>

* Update rad CLI documentation (#868)

* Autogenerate rad CLI reference docs

* Spellcheck

---------

Co-authored-by: rad-ci-bot <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Autogenerate rad CLI reference docs (#872)

Co-authored-by: rad-ci-bot <[email protected]>

* Autogenerate rad CLI reference docs (#873)

Co-authored-by: rad-ci-bot <[email protected]>

* Autogenerate rad CLI reference docs (#874)

Co-authored-by: rad-ci-bot <[email protected]>

* Upmerge 10-18-2023 (#877)

* Merge edge to v0.26 (#838)

* Add how-to guide on local dev recipes  (#822)

* Add supported resource types

* Add how-to guideto use local dev recipes

* Apply suggestions from code review

Co-authored-by: Jonathan Smith <[email protected]>

* Update docs/content/guides/recipes/howto-dev-recipes/index.md

* Adddress feedback

* Address feedback

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

* Minor tweaks

* minor tweaks

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Standardize pre-reqs for all how-tos (#836)

* Standardixe pre-reqs for all how-tos

* Update docs/content/guides/author-apps/azure/howto-azure-resources/index.md

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Sanitize docs for release references (#837)

* Add how-to guide on local dev recipes  (#822)

* Add supported resource types

* Add how-to guideto use local dev recipes

* Apply suggestions from code review

Co-authored-by: Jonathan Smith <[email protected]>

* Update docs/content/guides/recipes/howto-dev-recipes/index.md

* Adddress feedback

* Address feedback

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

* Minor tweaks

* minor tweaks

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Sanitize docs for release references

* Revert spelling fix

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Add Codespace docs

Signed-off-by: Aaron Crawfis <[email protected]>

* Update instructions for `How To Configure AWS Provider` (#839)

* Fixing a typo from the rad install kubernetes command (#846)

* Update pull_request_template.md (#844)

* Update steps after port forward to view the contents of /tmpdir (#847)

Update steps after port forward to view the contents of /tmpdir

Co-authored-by: Aaron Crawfis <[email protected]>

* Updating the initialization verification doc (#843)

Co-authored-by: Aaron Crawfis <[email protected]>

* Update index.md with '<container_name>' instead of 'frontend' (#848)

In commend to 'inspect container logs' update current value 'frontend' with a more generic '<container_name>' similar to other commands in the document

* Updating How To Connect Dependencies doc (#850)

* Multi-cloud and OSS concept doc (#821)

* 1st draft of multi-cloud and OSS concept doc

* Fixing spelling errors

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

* Update to correct open-source spelling

Co-authored-by: Aaron Crawfis <[email protected]>

* Changing doc weight to 100 per Aaron.

Co-authored-by: Aaron Crawfis <[email protected]>

* Apply break after header

Co-authored-by: Aaron Crawfis <[email protected]>

* Correct spelling error for "application"

Co-authored-by: Ryan Nowak <[email protected]>

* Add blank line after heading

Co-authored-by: Aaron Crawfis <[email protected]>

* Add blank line after heading

Co-authored-by: Aaron Crawfis <[email protected]>

* Include Helm charts in description of deployment assets

Co-authored-by: Ryan Nowak <[email protected]>

* Amazon S3 is not valid Dapr state store, so use DynamoDB instead

Co-authored-by: Ryan Nowak <[email protected]>

* More substantial changes based on Nowak's feedback

* Updating en-custom.txt spelling

* Put the "Concept:" in quotes to prevent build errors

Co-authored-by: Ryan Nowak <[email protected]>

* Get more specific about publicly available

Co-authored-by: Ryan Nowak <[email protected]>

* Update docs/content/concepts/multi-cloud-concept/index.md

Co-authored-by: Aaron Crawfis <[email protected]>

* Spellcheck

---------

Co-authored-by: Aaron Crawfis <[email protected]>
Co-authored-by: Ryan Nowak <[email protected]>

* Update index.md (#854)

Updating local dev recipes docs to use correct pod name

* Update link to initialize page (#853)

* Update link

Signed-off-by: Aaron Crawfis <[email protected]>

* Update vscode link

Signed-off-by: Aaron Crawfis <[email protected]>

---------

Signed-off-by: Aaron Crawfis <[email protected]>

* Update copy logic (#855)

Signed-off-by: Aaron Crawfis <[email protected]>

* Fix code formatting (#856)

* Add how to guide on Secret stores (#834)

* Add supported resource types

* Add how-to secret store

* Split into two howto-s

* Fix ref

* Updates

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

* Adddress feedback

* Address feedback

---------

Co-authored-by: Aaron Crawfis <[email protected]>

* Fix installation instructions

Signed-off-by: Aaron Crawfis <[email protected]>

* Add pre-requisites

Signed-off-by: Aaron Crawfis <[email protected]>

* Update api-ucp.md (#859)

* Update index.md (#858)

* Update index.md

Update to verify Helm installation

* nit

Co-authored-by: Aaron Crawfis <[email protected]>

* Spellcheck

Signed-off-by: Aaron Crawfis <[email protected]>

---------

Signed-off-by: Aaron Crawfis <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Update title

Signed-off-by: Aaron Crawfis <[email protected]>

* Add docs to install Radius Bicep extension from VSCode marketplace (#865)

* Add docs to install Radius Bicep extension from VSCode marketplace

* Revert wrong upd

* Revert upd to initialize

* Update docs/shared-content/installation/install-radius/initialize-radius.md

* Update docs/shared-content/installation/vscode-bicep/install-vscode-bicep.md

Co-authored-by: Aaron Crawfis <[email protected]>

---------

Co-authored-by: Aaron Crawfis <[email protected]>

* Update get.radapp.dev references (#866)

* Switch to radapp.io

Signed-off-by: Aaron Crawfis <[email protected]>

* add link to blog (#875)

Signed-off-by: Will Tsai <[email protected]>

* Remove clarity AAD integration

Signed-off-by: Aaron Crawfis <[email protected]>

* revert config changes

* revert config changes

---------

Signed-off-by: Aaron Crawfis <[email protected]>
Signed-off-by: Aaron Crawfis <[email protected]>
Signed-off-by: Will Tsai <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>
Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Karishma Chawla <[email protected]>
Co-authored-by: Vishwanath Hiremath <[email protected]>
Co-authored-by: Shalabh Mohan Shrivastava <[email protected]>
Co-authored-by: Lakshmi Javadekar <[email protected]>
Co-authored-by: Yetkin Timocin <[email protected]>
Co-authored-by: Ryan Waite <[email protected]>
Co-authored-by: Ryan Nowak <[email protected]>
Co-authored-by: Shruthi Kumar <[email protected]>
Co-authored-by: Will <[email protected]>

* Revert config changes

---------

Signed-off-by: Aaron Crawfis <[email protected]>
Signed-off-by: Aaron Crawfis <[email protected]>
Signed-off-by: Will Tsai <[email protected]>
Co-authored-by: Ryan Nowak <[email protected]>
Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Ryan Waite <[email protected]>
Co-authored-by: rad-ci-bot <[email protected]>
Co-authored-by: rad-ci-bot <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>
Co-authored-by: Karishma Chawla <[email protected]>
Co-authored-by: Vishwanath Hiremath <[email protected]>
Co-authored-by: Shalabh Mohan Shrivastava <[email protected]>
Co-authored-by: Lakshmi Javadekar <[email protected]>
Co-authored-by: Yetkin Timocin <[email protected]>
Co-authored-by: Shruthi Kumar <[email protected]>
Co-authored-by: Will <[email protected]>

* Add auto-generated reference docs shortcode (#880)

* Create script to create reference pages

* Switch to shortcode for Bicep

* Update script

* Update docs

* Add shortcode

Signed-off-by: Aaron Crawfis <[email protected]>

* Remove generated docs

Signed-off-by: Aaron Crawfis <[email protected]>

---------

Signed-off-by: Aaron Crawfis <[email protected]>

* Order concept docs (#879)

* Fix image name

Signed-off-by: Aaron Crawfis <[email protected]>

* trailing slash config (#887)

* Switch to auto

Signed-off-by: Aaron Crawfis <[email protected]>

* Revert trailingSlash

Signed-off-by: Aaron Crawfis <[email protected]>

* Switch back to always

Signed-off-by: Aaron Crawfis <[email protected]>

* Switch to never

Signed-off-by: Aaron Crawfis <[email protected]>

* Set to always

Signed-off-by: Aaron Crawfis <[email protected]>

* Omit trailing slashes

Signed-off-by: Aaron Crawfis <[email protected]>

* Use trailingSlash always

Signed-off-by: Aaron Crawfis <[email protected]>

* Remove trailingSlashes

Signed-off-by: Aaron Crawfis <[email protected]>

* Fix trailing slash

Signed-off-by: Aaron Crawfis <[email protected]>

* Revert update

Signed-off-by: Aaron Crawfis <[email protected]>

* Fix frontend name for new-app tutorial (#890)

* Fix frontend name

Signed-off-by: Aaron Crawfis <[email protected]>

* Fix frontend name

Co-authored-by: Saverio Proto <[email protected]>
Signed-off-by: Aaron Crawfis <[email protected]>

---------

Signed-off-by: Aaron Crawfis <[email protected]>
Co-authored-by: Saverio Proto <[email protected]>

* corrected typo, sharing => sharding (#891)

* Spelling

Signed-off-by: Aaron Crawfis <[email protected]>

* Add redirect for radapp.dev (#895)

Signed-off-by: Aaron Crawfis <[email protected]>

* Markdownify content for edge and latest shortcodes

* Markdownify content

* Update docs/shared-content/installation/vscode-bicep/install-vscode-bicep.md

* Markdownify content

* Rebase edge

* Rebase edge

* remove yml

* Add breaks

---------

Signed-off-by: Aaron Crawfis <[email protected]>
Signed-off-by: Aaron Crawfis <[email protected]>
Signed-off-by: Will Tsai <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>
Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Karishma Chawla <[email protected]>
Co-authored-by: Vishwanath Hiremath <[email protected]>
Co-authored-by: Shalabh Mohan Shrivastava <[email protected]>
Co-authored-by: Lakshmi Javadekar <[email protected]>
Co-authored-by: Yetkin Timocin <[email protected]>
Co-authored-by: Ryan Waite <[email protected]>
Co-authored-by: Ryan Nowak <[email protected]>
Co-authored-by: Shruthi Kumar <[email protected]>
Co-authored-by: Will <[email protected]>
Co-authored-by: rad-ci-bot <[email protected]>
Co-authored-by: rad-ci-bot <[email protected]>
Co-authored-by: Saverio Proto <[email protected]>
Co-authored-by: castlec <[email protected]>
jasonviviano pushed a commit that referenced this pull request Nov 6, 2023
* Merge edge to v0.26 (#838)

* Add how-to guide on local dev recipes  (#822)

* Add supported resource types

* Add how-to guideto use local dev recipes

* Apply suggestions from code review

Co-authored-by: Jonathan Smith <[email protected]>

* Update docs/content/guides/recipes/howto-dev-recipes/index.md

* Adddress feedback

* Address feedback

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

* Minor tweaks

* minor tweaks

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Standardize pre-reqs for all how-tos (#836)

* Standardixe pre-reqs for all how-tos

* Update docs/content/guides/author-apps/azure/howto-azure-resources/index.md

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Sanitize docs for release references (#837)

* Add how-to guide on local dev recipes  (#822)

* Add supported resource types

* Add how-to guideto use local dev recipes

* Apply suggestions from code review

Co-authored-by: Jonathan Smith <[email protected]>

* Update docs/content/guides/recipes/howto-dev-recipes/index.md

* Adddress feedback

* Address feedback

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

* Minor tweaks

* minor tweaks

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Sanitize docs for release references

* Revert spelling fix

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Add Codespace docs

Signed-off-by: Aaron Crawfis <[email protected]>

* Update instructions for `How To Configure AWS Provider` (#839)

* Fixing a typo from the rad install kubernetes command (#846)

* Update pull_request_template.md (#844)

* Update steps after port forward to view the contents of /tmpdir (#847)

Update steps after port forward to view the contents of /tmpdir

Co-authored-by: Aaron Crawfis <[email protected]>

* Updating the initialization verification doc (#843)

Co-authored-by: Aaron Crawfis <[email protected]>

* Update index.md with '<container_name>' instead of 'frontend' (#848)

In commend to 'inspect container logs' update current value 'frontend' with a more generic '<container_name>' similar to other commands in the document

* Updating How To Connect Dependencies doc (#850)

* Multi-cloud and OSS concept doc (#821)

* 1st draft of multi-cloud and OSS concept doc

* Fixing spelling errors

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

* Update to correct open-source spelling

Co-authored-by: Aaron Crawfis <[email protected]>

* Changing doc weight to 100 per Aaron.

Co-authored-by: Aaron Crawfis <[email protected]>

* Apply break after header

Co-authored-by: Aaron Crawfis <[email protected]>

* Correct spelling error for "application"

Co-authored-by: Ryan Nowak <[email protected]>

* Add blank line after heading

Co-authored-by: Aaron Crawfis <[email protected]>

* Add blank line after heading

Co-authored-by: Aaron Crawfis <[email protected]>

* Include Helm charts in description of deployment assets

Co-authored-by: Ryan Nowak <[email protected]>

* Amazon S3 is not valid Dapr state store, so use DynamoDB instead

Co-authored-by: Ryan Nowak <[email protected]>

* More substantial changes based on Nowak's feedback

* Updating en-custom.txt spelling

* Put the "Concept:" in quotes to prevent build errors

Co-authored-by: Ryan Nowak <[email protected]>

* Get more specific about publicly available

Co-authored-by: Ryan Nowak <[email protected]>

* Update docs/content/concepts/multi-cloud-concept/index.md

Co-authored-by: Aaron Crawfis <[email protected]>

* Spellcheck

---------

Co-authored-by: Aaron Crawfis <[email protected]>
Co-authored-by: Ryan Nowak <[email protected]>

* Update index.md (#854)

Updating local dev recipes docs to use correct pod name

* Update link to initialize page (#853)

* Update link

Signed-off-by: Aaron Crawfis <[email protected]>

* Update vscode link

Signed-off-by: Aaron Crawfis <[email protected]>

---------

Signed-off-by: Aaron Crawfis <[email protected]>

* Update copy logic (#855)

Signed-off-by: Aaron Crawfis <[email protected]>

* Fix code formatting (#856)

* Add how to guide on Secret stores (#834)

* Add supported resource types

* Add how-to secret store

* Split into two howto-s

* Fix ref

* Updates

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

* Adddress feedback

* Address feedback

---------

Co-authored-by: Aaron Crawfis <[email protected]>

* Fix installation instructions

Signed-off-by: Aaron Crawfis <[email protected]>

* Add pre-requisites

Signed-off-by: Aaron Crawfis <[email protected]>

* Update api-ucp.md (#859)

* Update index.md (#858)

* Update index.md

Update to verify Helm installation

* nit

Co-authored-by: Aaron Crawfis <[email protected]>

* Spellcheck

Signed-off-by: Aaron Crawfis <[email protected]>

---------

Signed-off-by: Aaron Crawfis <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Update title

Signed-off-by: Aaron Crawfis <[email protected]>

* Add docs to install Radius Bicep extension from VSCode marketplace (#865)

* Add docs to install Radius Bicep extension from VSCode marketplace

* Revert wrong upd

* Revert upd to initialize

* Update docs/shared-content/installation/install-radius/initialize-radius.md

* Update docs/shared-content/installation/vscode-bicep/install-vscode-bicep.md

Co-authored-by: Aaron Crawfis <[email protected]>

---------

Co-authored-by: Aaron Crawfis <[email protected]>

* Update get.radapp.dev references (#866)

* Switch to radapp.io

Signed-off-by: Aaron Crawfis <[email protected]>

* add link to blog (#875)

Signed-off-by: Will Tsai <[email protected]>

* Remove clarity AAD integration

Signed-off-by: Aaron Crawfis <[email protected]>

* revert config changes

* revert config changes

---------

Signed-off-by: Aaron Crawfis <[email protected]>
Signed-off-by: Aaron Crawfis <[email protected]>
Signed-off-by: Will Tsai <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>
Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Karishma Chawla <[email protected]>
Co-authored-by: Vishwanath Hiremath <[email protected]>
Co-authored-by: Shalabh Mohan Shrivastava <[email protected]>
Co-authored-by: Lakshmi Javadekar <[email protected]>
Co-authored-by: Yetkin Timocin <[email protected]>
Co-authored-by: Ryan Waite <[email protected]>
Co-authored-by: Ryan Nowak <[email protected]>
Co-authored-by: Shruthi Kumar <[email protected]>
Co-authored-by: Will <[email protected]>
Signed-off-by: jasonviviano <[email protected]>
jasonviviano pushed a commit that referenced this pull request Nov 6, 2023
* Merge edge to v0.26 (#838)

* Add how-to guide on local dev recipes  (#822)

* Add supported resource types

* Add how-to guideto use local dev recipes

* Apply suggestions from code review

Co-authored-by: Jonathan Smith <[email protected]>

* Update docs/content/guides/recipes/howto-dev-recipes/index.md

* Adddress feedback

* Address feedback

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

* Minor tweaks

* minor tweaks

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Standardize pre-reqs for all how-tos (#836)

* Standardixe pre-reqs for all how-tos

* Update docs/content/guides/author-apps/azure/howto-azure-resources/index.md

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Sanitize docs for release references (#837)

* Add how-to guide on local dev recipes  (#822)

* Add supported resource types

* Add how-to guideto use local dev recipes

* Apply suggestions from code review

Co-authored-by: Jonathan Smith <[email protected]>

* Update docs/content/guides/recipes/howto-dev-recipes/index.md

* Adddress feedback

* Address feedback

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

* Minor tweaks

* minor tweaks

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Sanitize docs for release references

* Revert spelling fix

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Add Codespace docs

Signed-off-by: Aaron Crawfis <[email protected]>

* Update instructions for `How To Configure AWS Provider` (#839)

* Fixing a typo from the rad install kubernetes command (#846)

* Update pull_request_template.md (#844)

* Update steps after port forward to view the contents of /tmpdir (#847)

Update steps after port forward to view the contents of /tmpdir

Co-authored-by: Aaron Crawfis <[email protected]>

* Updating the initialization verification doc (#843)

Co-authored-by: Aaron Crawfis <[email protected]>

* Update index.md with '<container_name>' instead of 'frontend' (#848)

In commend to 'inspect container logs' update current value 'frontend' with a more generic '<container_name>' similar to other commands in the document

* Updating How To Connect Dependencies doc (#850)

* Multi-cloud and OSS concept doc (#821)

* 1st draft of multi-cloud and OSS concept doc

* Fixing spelling errors

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

* Update to correct open-source spelling

Co-authored-by: Aaron Crawfis <[email protected]>

* Changing doc weight to 100 per Aaron.

Co-authored-by: Aaron Crawfis <[email protected]>

* Apply break after header

Co-authored-by: Aaron Crawfis <[email protected]>

* Correct spelling error for "application"

Co-authored-by: Ryan Nowak <[email protected]>

* Add blank line after heading

Co-authored-by: Aaron Crawfis <[email protected]>

* Add blank line after heading

Co-authored-by: Aaron Crawfis <[email protected]>

* Include Helm charts in description of deployment assets

Co-authored-by: Ryan Nowak <[email protected]>

* Amazon S3 is not valid Dapr state store, so use DynamoDB instead

Co-authored-by: Ryan Nowak <[email protected]>

* More substantial changes based on Nowak's feedback

* Updating en-custom.txt spelling

* Put the "Concept:" in quotes to prevent build errors

Co-authored-by: Ryan Nowak <[email protected]>

* Get more specific about publicly available

Co-authored-by: Ryan Nowak <[email protected]>

* Update docs/content/concepts/multi-cloud-concept/index.md

Co-authored-by: Aaron Crawfis <[email protected]>

* Spellcheck

---------

Co-authored-by: Aaron Crawfis <[email protected]>
Co-authored-by: Ryan Nowak <[email protected]>

* Update index.md (#854)

Updating local dev recipes docs to use correct pod name

* Update link to initialize page (#853)

* Update link

Signed-off-by: Aaron Crawfis <[email protected]>

* Update vscode link

Signed-off-by: Aaron Crawfis <[email protected]>

---------

Signed-off-by: Aaron Crawfis <[email protected]>

* Update copy logic (#855)

Signed-off-by: Aaron Crawfis <[email protected]>

* Fix code formatting (#856)

* Add how to guide on Secret stores (#834)

* Add supported resource types

* Add how-to secret store

* Split into two howto-s

* Fix ref

* Updates

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

* Adddress feedback

* Address feedback

---------

Co-authored-by: Aaron Crawfis <[email protected]>

* Fix installation instructions

Signed-off-by: Aaron Crawfis <[email protected]>

* Add pre-requisites

Signed-off-by: Aaron Crawfis <[email protected]>

* Update api-ucp.md (#859)

* Update index.md (#858)

* Update index.md

Update to verify Helm installation

* nit

Co-authored-by: Aaron Crawfis <[email protected]>

* Spellcheck

Signed-off-by: Aaron Crawfis <[email protected]>

---------

Signed-off-by: Aaron Crawfis <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Update title

Signed-off-by: Aaron Crawfis <[email protected]>

* Add docs to install Radius Bicep extension from VSCode marketplace (#865)

* Add docs to install Radius Bicep extension from VSCode marketplace

* Revert wrong upd

* Revert upd to initialize

* Update docs/shared-content/installation/install-radius/initialize-radius.md

* Update docs/shared-content/installation/vscode-bicep/install-vscode-bicep.md

Co-authored-by: Aaron Crawfis <[email protected]>

---------

Co-authored-by: Aaron Crawfis <[email protected]>

* Update get.radapp.dev references (#866)

* Switch to radapp.io

Signed-off-by: Aaron Crawfis <[email protected]>

* add link to blog (#875)

Signed-off-by: Will Tsai <[email protected]>

* Remove clarity AAD integration

Signed-off-by: Aaron Crawfis <[email protected]>

* Downmerge 10-18-2023 (#878)

* Adding "Why Radius?" concept doc (#827)

* Adding "Why Radius?" concept doc

* Apply suggestions from code review

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Ryan Waite <[email protected]>

* More feedback

* third draft

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Ryan Waite <[email protected]>

* Update rad CLI documentation (#868)

* Autogenerate rad CLI reference docs

* Spellcheck

---------

Co-authored-by: rad-ci-bot <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Autogenerate rad CLI reference docs (#872)

Co-authored-by: rad-ci-bot <[email protected]>

* Autogenerate rad CLI reference docs (#873)

Co-authored-by: rad-ci-bot <[email protected]>

* Autogenerate rad CLI reference docs (#874)

Co-authored-by: rad-ci-bot <[email protected]>

* Upmerge 10-18-2023 (#877)

* Merge edge to v0.26 (#838)

* Add how-to guide on local dev recipes  (#822)

* Add supported resource types

* Add how-to guideto use local dev recipes

* Apply suggestions from code review

Co-authored-by: Jonathan Smith <[email protected]>

* Update docs/content/guides/recipes/howto-dev-recipes/index.md

* Adddress feedback

* Address feedback

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

* Minor tweaks

* minor tweaks

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Standardize pre-reqs for all how-tos (#836)

* Standardixe pre-reqs for all how-tos

* Update docs/content/guides/author-apps/azure/howto-azure-resources/index.md

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Sanitize docs for release references (#837)

* Add how-to guide on local dev recipes  (#822)

* Add supported resource types

* Add how-to guideto use local dev recipes

* Apply suggestions from code review

Co-authored-by: Jonathan Smith <[email protected]>

* Update docs/content/guides/recipes/howto-dev-recipes/index.md

* Adddress feedback

* Address feedback

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

* Minor tweaks

* minor tweaks

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Sanitize docs for release references

* Revert spelling fix

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

---------

Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Add Codespace docs

Signed-off-by: Aaron Crawfis <[email protected]>

* Update instructions for `How To Configure AWS Provider` (#839)

* Fixing a typo from the rad install kubernetes command (#846)

* Update pull_request_template.md (#844)

* Update steps after port forward to view the contents of /tmpdir (#847)

Update steps after port forward to view the contents of /tmpdir

Co-authored-by: Aaron Crawfis <[email protected]>

* Updating the initialization verification doc (#843)

Co-authored-by: Aaron Crawfis <[email protected]>

* Update index.md with '<container_name>' instead of 'frontend' (#848)

In commend to 'inspect container logs' update current value 'frontend' with a more generic '<container_name>' similar to other commands in the document

* Updating How To Connect Dependencies doc (#850)

* Multi-cloud and OSS concept doc (#821)

* 1st draft of multi-cloud and OSS concept doc

* Fixing spelling errors

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

* Update to correct open-source spelling

Co-authored-by: Aaron Crawfis <[email protected]>

* Changing doc weight to 100 per Aaron.

Co-authored-by: Aaron Crawfis <[email protected]>

* Apply break after header

Co-authored-by: Aaron Crawfis <[email protected]>

* Correct spelling error for "application"

Co-authored-by: Ryan Nowak <[email protected]>

* Add blank line after heading

Co-authored-by: Aaron Crawfis <[email protected]>

* Add blank line after heading

Co-authored-by: Aaron Crawfis <[email protected]>

* Include Helm charts in description of deployment assets

Co-authored-by: Ryan Nowak <[email protected]>

* Amazon S3 is not valid Dapr state store, so use DynamoDB instead

Co-authored-by: Ryan Nowak <[email protected]>

* More substantial changes based on Nowak's feedback

* Updating en-custom.txt spelling

* Put the "Concept:" in quotes to prevent build errors

Co-authored-by: Ryan Nowak <[email protected]>

* Get more specific about publicly available

Co-authored-by: Ryan Nowak <[email protected]>

* Update docs/content/concepts/multi-cloud-concept/index.md

Co-authored-by: Aaron Crawfis <[email protected]>

* Spellcheck

---------

Co-authored-by: Aaron Crawfis <[email protected]>
Co-authored-by: Ryan Nowak <[email protected]>

* Update index.md (#854)

Updating local dev recipes docs to use correct pod name

* Update link to initialize page (#853)

* Update link

Signed-off-by: Aaron Crawfis <[email protected]>

* Update vscode link

Signed-off-by: Aaron Crawfis <[email protected]>

---------

Signed-off-by: Aaron Crawfis <[email protected]>

* Update copy logic (#855)

Signed-off-by: Aaron Crawfis <[email protected]>

* Fix code formatting (#856)

* Add how to guide on Secret stores (#834)

* Add supported resource types

* Add how-to secret store

* Split into two howto-s

* Fix ref

* Updates

* Apply suggestions from code review

Co-authored-by: Aaron Crawfis <[email protected]>

* Adddress feedback

* Address feedback

---------

Co-authored-by: Aaron Crawfis <[email protected]>

* Fix installation instructions

Signed-off-by: Aaron Crawfis <[email protected]>

* Add pre-requisites

Signed-off-by: Aaron Crawfis <[email protected]>

* Update api-ucp.md (#859)

* Update index.md (#858)

* Update index.md

Update to verify Helm installation

* nit

Co-authored-by: Aaron Crawfis <[email protected]>

* Spellcheck

Signed-off-by: Aaron Crawfis <[email protected]>

---------

Signed-off-by: Aaron Crawfis <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>

* Update title

Signed-off-by: Aaron Crawfis <[email protected]>

* Add docs to install Radius Bicep extension from VSCode marketplace (#865)

* Add docs to install Radius Bicep extension from VSCode marketplace

* Revert wrong upd

* Revert upd to initialize

* Update docs/shared-content/installation/install-radius/initialize-radius.md

* Update docs/shared-content/installation/vscode-bicep/install-vscode-bicep.md

Co-authored-by: Aaron Crawfis <[email protected]>

---------

Co-authored-by: Aaron Crawfis <[email protected]>

* Update get.radapp.dev references (#866)

* Switch to radapp.io

Signed-off-by: Aaron Crawfis <[email protected]>

* add link to blog (#875)

Signed-off-by: Will Tsai <[email protected]>

* Remove clarity AAD integration

Signed-off-by: Aaron Crawfis <[email protected]>

* revert config changes

* revert config changes

---------

Signed-off-by: Aaron Crawfis <[email protected]>
Signed-off-by: Aaron Crawfis <[email protected]>
Signed-off-by: Will Tsai <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>
Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Karishma Chawla <[email protected]>
Co-authored-by: Vishwanath Hiremath <[email protected]>
Co-authored-by: Shalabh Mohan Shrivastava <[email protected]>
Co-authored-by: Lakshmi Javadekar <[email protected]>
Co-authored-by: Yetkin Timocin <[email protected]>
Co-authored-by: Ryan Waite <[email protected]>
Co-authored-by: Ryan Nowak <[email protected]>
Co-authored-by: Shruthi Kumar <[email protected]>
Co-authored-by: Will <[email protected]>

* Revert config changes

---------

Signed-off-by: Aaron Crawfis <[email protected]>
Signed-off-by: Aaron Crawfis <[email protected]>
Signed-off-by: Will Tsai <[email protected]>
Co-authored-by: Ryan Nowak <[email protected]>
Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Ryan Waite <[email protected]>
Co-authored-by: rad-ci-bot <[email protected]>
Co-authored-by: rad-ci-bot <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>
Co-authored-by: Karishma Chawla <[email protected]>
Co-authored-by: Vishwanath Hiremath <[email protected]>
Co-authored-by: Shalabh Mohan Shrivastava <[email protected]>
Co-authored-by: Lakshmi Javadekar <[email protected]>
Co-authored-by: Yetkin Timocin <[email protected]>
Co-authored-by: Shruthi Kumar <[email protected]>
Co-authored-by: Will <[email protected]>

* Add auto-generated reference docs shortcode (#880)

* Create script to create reference pages

* Switch to shortcode for Bicep

* Update script

* Update docs

* Add shortcode

Signed-off-by: Aaron Crawfis <[email protected]>

* Remove generated docs

Signed-off-by: Aaron Crawfis <[email protected]>

---------

Signed-off-by: Aaron Crawfis <[email protected]>

* Order concept docs (#879)

* Fix image name

Signed-off-by: Aaron Crawfis <[email protected]>

* trailing slash config (#887)

* Switch to auto

Signed-off-by: Aaron Crawfis <[email protected]>

* Revert trailingSlash

Signed-off-by: Aaron Crawfis <[email protected]>

* Switch back to always

Signed-off-by: Aaron Crawfis <[email protected]>

* Switch to never

Signed-off-by: Aaron Crawfis <[email protected]>

* Set to always

Signed-off-by: Aaron Crawfis <[email protected]>

* Omit trailing slashes

Signed-off-by: Aaron Crawfis <[email protected]>

* Use trailingSlash always

Signed-off-by: Aaron Crawfis <[email protected]>

* Remove trailingSlashes

Signed-off-by: Aaron Crawfis <[email protected]>

* Fix trailing slash

Signed-off-by: Aaron Crawfis <[email protected]>

* Revert update

Signed-off-by: Aaron Crawfis <[email protected]>

* Fix frontend name for new-app tutorial (#890)

* Fix frontend name

Signed-off-by: Aaron Crawfis <[email protected]>

* Fix frontend name

Co-authored-by: Saverio Proto <[email protected]>
Signed-off-by: Aaron Crawfis <[email protected]>

---------

Signed-off-by: Aaron Crawfis <[email protected]>
Co-authored-by: Saverio Proto <[email protected]>

* corrected typo, sharing => sharding (#891)

* Spelling

Signed-off-by: Aaron Crawfis <[email protected]>

* Add redirect for radapp.dev (#895)

Signed-off-by: Aaron Crawfis <[email protected]>

* Markdownify content for edge and latest shortcodes

* Markdownify content

* Update docs/shared-content/installation/vscode-bicep/install-vscode-bicep.md

* Markdownify content

* Rebase edge

* Rebase edge

* remove yml

* Add breaks

---------

Signed-off-by: Aaron Crawfis <[email protected]>
Signed-off-by: Aaron Crawfis <[email protected]>
Signed-off-by: Will Tsai <[email protected]>
Co-authored-by: Aaron Crawfis <[email protected]>
Co-authored-by: Jonathan Smith <[email protected]>
Co-authored-by: Karishma Chawla <[email protected]>
Co-authored-by: Vishwanath Hiremath <[email protected]>
Co-authored-by: Shalabh Mohan Shrivastava <[email protected]>
Co-authored-by: Lakshmi Javadekar <[email protected]>
Co-authored-by: Yetkin Timocin <[email protected]>
Co-authored-by: Ryan Waite <[email protected]>
Co-authored-by: Ryan Nowak <[email protected]>
Co-authored-by: Shruthi Kumar <[email protected]>
Co-authored-by: Will <[email protected]>
Co-authored-by: rad-ci-bot <[email protected]>
Co-authored-by: rad-ci-bot <[email protected]>
Co-authored-by: Saverio Proto <[email protected]>
Co-authored-by: castlec <[email protected]>
Signed-off-by: jasonviviano <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

How-To: Secret Stores
4 participants