Skip to content

Commit

Permalink
Upmerge to edge
Browse files Browse the repository at this point in the history
  • Loading branch information
rad-ci-bot committed Nov 12, 2024
2 parents d425e1d + f80d912 commit 1b0d24c
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 10 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/upmerge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,16 @@ jobs:
ref: edge
# https://github.com/actions/checkout/issues/125#issuecomment-570254411
fetch-depth: 0
persist-credentials: false

- name: Configure git
env:
GH_TOKEN: ${{ secrets.GH_RAD_CI_BOT_PAT }}
run: |
git config --global user.email "[email protected]"
git config --global user.name "Radius CI Bot"
git remote set-url origin https://[email protected]/${{ github.repository }}
# Create a new branch from edge. This branch will be used to PR back into edge.
- name: Create new branch
run: |
Expand Down Expand Up @@ -78,5 +82,5 @@ jobs:
- name: Create pull request
if: env.NO_CHANGES != 'true'
env:
GITHUB_TOKEN: ${{ secrets.GH_RAD_CI_BOT_PAT}}
run: gh pr create --title "Upmerge to edge" --body "Upmerge to edge (kicked off by @${{ github.triggering_actor }})" --base edge --head $BRANCH_NAME --signoff
GH_TOKEN: ${{ secrets.GH_RAD_CI_BOT_PAT }}
run: gh pr create --title "Upmerge to edge" --body "Upmerge to edge (kicked off by @${{ github.triggering_actor }})" --base edge --head $BRANCH_NAME
2 changes: 2 additions & 0 deletions CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# These owners are the maintainers and approvers of this repo
* @radius-project/maintainers-docs @radius-project/approvers-docs
8 changes: 4 additions & 4 deletions docs/config.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
baseURL = "https://edge.docs.radapp.io/"
baseURL = "https://docs.radapp.io/"
languageCode = "en-us"
title = "Radius Docs"
theme = "docsy"
Expand Down Expand Up @@ -67,17 +67,17 @@ tag = "tags"

[params]
copyright = "The Radius Authors. The Linux Foundation has registered trademarks and uses trademarks. For a list of trademarks of The Linux Foundation, please see the https://linuxfoundation.org/trademark-usage/ page."
version = "edge"
version = "v0.39"
tag_version = "latest"
chart_version = "0.26.0"
chart_version = "0.39.0"

# Algolia Search
algolia_docsearch = true

# GitHub Information
github_repo = "https://github.com/radius-project/docs"
github_subdir = "docs"
github_branch = "edge"
github_branch = "v0.39"
github_project_repo = "https://github.com/radius-project/radius"

# Versioning
Expand Down
2 changes: 1 addition & 1 deletion docs/content/getting-started/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ The Radius getting-started guide can be [run **for free** in a GitHub Codespace]
## 1. Have your Kubernetes cluster handy

Radius runs inside [Kubernetes]({{< ref "guides/operations/kubernetes" >}}). However you run Kubernetes, get a cluster ready.
> *If you don't have a preferred way to create Kubernetes clusters, you could try using [k3d](https://k3d.io/), which runs a minimal Kubernetes distribution in Docker. Make sure to apply the [recommended configuration]({{< ref "guides/operations/kubernetes/overview##supported-kubernetes-clusters" >}}).*
> *If you don't have a preferred way to create Kubernetes clusters, you could try using [k3d](https://k3d.io/), which runs a minimal Kubernetes distribution in Docker. Make sure to apply the [recommended configuration]({{< ref "guides/operations/kubernetes/overview#supported-kubernetes-clusters" >}}).*
Ensure your cluster is set as your current context:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The AWS provider allows you to deploy and connect to AWS resources from a Radius
- [rad CLI]({{< ref "installation#step-1-install-the-rad-cli" >}})
- [Setup a supported Kubernetes cluster]({{< ref "/guides/operations/kubernetes/overview#supported-clusters" >}})
- You will need the cluster's OIDC Issuer URL. [EKS Example](https://docs.aws.amazon.com/eks/latest/userguide/enable-iam-roles-for-service-accounts.html)
- [Create an IAM Policy] (https://docs.aws.amazon.com/eks/latest/userguide/associate-service-account-role.html)
- [Create an IAM Policy](https://docs.aws.amazon.com/eks/latest/userguide/associate-service-account-role.html)


## Setup the AWS IAM Roles for Service Accounts(IRSA) for Radius
Expand Down
1 change: 1 addition & 0 deletions docs/content/guides/operations/providers/overview/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ Radius cloud providers allow you to deploy and connect to cloud resources across
| [Microsoft Azure]({{< ref azure-provider >}}) | [Service Principal](https://learn.microsoft.com/en-us/entra/identity-platform/app-objects-and-service-principals?tabs=browser) | Deploy and connect to Azure resources using Service Principal |
| | [Workload Identity](https://learn.microsoft.com/en-us/entra/workload-id/workload-identities-overview) | Deploy and connect to Azure resources using Workload Identity |
| [Amazon Web Services]({{< ref aws-provider >}}) | [IAM access Key](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access-keys.html) | Deploy and connect to AWS resources using IAM Access Key |
| | [IAM Roles for Service Accounts](https://docs.aws.amazon.com/eks/latest/userguide/iam-roles-for-service-accounts.html) | Deploy and connect to AWS resources using AWS IRSA |
2 changes: 1 addition & 1 deletion docs/layouts/partials/hooks/body-end.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
container: '#docsearch',
appId: 'ED67NSVSZS',
apiKey: '21e2920c3a9c29b98cbc382694413f29',
indexName: 'radapp-dev-edge',
indexName: 'radapp-dev',
});
</script>
{{ end }}
Expand Down

0 comments on commit 1b0d24c

Please sign in to comment.