Skip to content

Commit

Permalink
Fix broken link (#214)
Browse files Browse the repository at this point in the history
Fix broken links
docs.microsoft.com => learn.microsoft.com
remove en-us culture from links
The link leading with azure.microsoft.com returns 0. Add 0 into aliveStatusCodes as workaround.
  • Loading branch information
dingmeng-xue authored Nov 28, 2024
1 parent 0350224 commit 3671fd3
Show file tree
Hide file tree
Showing 15 changed files with 44 additions and 45 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/mlc_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@
"pattern": "^https://github.com/Azure-Samples/acme-fitness-store/invitations"
}
],
"aliveStatusCodes": [200]
"aliveStatusCodes": [0, 200, 302]
}
3 changes: 1 addition & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
VMware uses GitHub and accepts code contributions via
[pull requests](https://help.github.com/articles/using-pull-requests). If you wish to contribute code and
you have not signed our contributor license agreement (CLA), our bot will update the issue when you open a Pull Request.
For any questions about the CLA process, please refer to our [FAQ](https://cla.vmware.com/faq).

Follow these steps to make a contribution to any of our open source repositories:

Expand All @@ -21,4 +20,4 @@ Notes:
* All contributions need to be sent using GitHub Pull Requests, preferably consisting of a single commit
* Tests are required for any changes
* We favor small pull requests with a single clearly-defined purpose
* Your pull request is much more likely to be accepted if it has a clear log message which conveys the intent of your change
* Your pull request is much more likely to be accepted if it has a clear log message which conveys the intent of your change
22 changes: 11 additions & 11 deletions azure-spring-apps-enterprise/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ This application is composed of several services:
In order to deploy a Java app to cloud, you need
an Azure subscription. If you do not already have an Azure
subscription, you can activate your
[MSDN subscriber benefits](https://azure.microsoft.com/pricing/member-offers/msdn-benefits-details/)
[MSDN subscriber benefits](https://azure.microsoft.com/pricing/member-offers/credit-for-visual-studio-subscribers/)
or sign up for a
[free Azure account](https://azure.microsoft.com/free/).
[free Azure account](https://azure.microsoft.com/pricing/purchase-options/azure-account).

In addition, you will need the following:

| [Azure CLI version 2.50.0 or higher](https://docs.microsoft.com/cli/azure/install-azure-cli?view=azure-cli-latest)
| [Azure CLI version 2.50.0 or higher](https://learn.microsoft.com/cli/azure/install-azure-cli?view=azure-cli-latest)
| [Git](https://git-scm.com/)
| [`jq` utility](https://stedolan.github.io/jq/download/)
|
Expand Down Expand Up @@ -125,7 +125,7 @@ az extension remove --name spring-cloud
az extension remove --name spring
az extension add --name spring
```
If `spring`'s version still < `1.14.0` after above commands, you can try to [re-install Azure CLI](https://docs.microsoft.com/en-us/cli/azure/install-azure-cli).
If `spring`'s version still < `1.14.0` after above commands, you can try to [re-install Azure CLI](https://learn.microsoft.com/en-us/cli/azure/install-azure-cli).

## Clone the repo

Expand Down Expand Up @@ -194,7 +194,7 @@ export LOG_ANALYTICS_WORKSPACE=log-analytics-name # existing workspace or one
export REGION=region-name # choose a region with Enterprise tier support
```

The REGION value should be one of available regions for Azure Spring Apps (e.g. eastus). Please visit [here](https://azure.microsoft.com/en-us/global-infrastructure/services/?products=spring-apps&regions=all) for all available regions for Azure Spring Apps.
The REGION value should be one of available regions for Azure Spring Apps (e.g. eastus). Please visit [here](https://azure.microsoft.com/explore/global-infrastructure/products-by-region) for all available regions for Azure Spring Apps.

Then, set the environment:

Expand Down Expand Up @@ -596,7 +596,7 @@ az ad app credential reset --id ${APPLICATION_ID} --append > ../resources/json/s
az ad sp create --id ${APPLICATION_ID}
```

More detailed instructions on Application Registrations can be found [here](https://docs.microsoft.com/en-us/azure/active-directory/develop/quickstart-register-app)
More detailed instructions on Application Registrations can be found [here](https://learn.microsoft.com/en-us/azure/active-directory/develop/quickstart-register-app)

### Prepare your environment for SSO Deployments

Expand Down Expand Up @@ -631,7 +631,7 @@ az ad app update --id ${APPLICATION_ID} \
--web-redirect-uris "https://${GATEWAY_URL}/login/oauth2/code/sso" "https://${PORTAL_URL}/oauth2-redirect.html" "https://${PORTAL_URL}/login/oauth2/code/sso"
```

Detailed information about redirect URIs can be found [here](https://docs.microsoft.com/en-us/azure/active-directory/develop/quickstart-register-app#add-a-redirect-uri).
Detailed information about redirect URIs can be found [here](https://learn.microsoft.com/en-us/azure/active-directory/develop/quickstart-register-app#add-a-redirect-uri).

### Using an Existing SSO Identity Provider

Expand Down Expand Up @@ -1688,7 +1688,7 @@ az ad sp create-for-rbac --name "change-me" \
### Add Secrets to GitHub Actions

> Detailed instructions for adding secrets to GitHub Actions can be found [here](https://docs.microsoft.com/azure/spring-cloud/how-to-github-actions?pivots=programming-language-java#set-up-github-repository-and-authenticate-1).
> Detailed instructions for adding secrets to GitHub Actions can be found [here](https://learn.microsoft.com/azure/spring-apps/how-to-github-actions?pivots=programming-language-java#set-up-github-repository-and-authenticate-1).
Add the following secrets (8x) to GitHub Actions:

Expand Down Expand Up @@ -1925,11 +1925,11 @@ In this quickstart, you've deployed polyglot applications to Azure Spring Apps u
You also configured VMware Tanzu components in the enterprise tier. To learn more about
Azure Spring Apps or VMware Tanzu components, go to:
* [Azure Spring Apps](https://azure.microsoft.com/en-us/services/spring-cloud/)
* [Azure Spring Apps docs](https://docs.microsoft.com/en-us/azure/spring-cloud/quickstart-provision-service-instance-enterprise?tabs=azure-portal)
* [Azure Spring Apps](https://azure.microsoft.com/services/spring-apps/)
* [Azure Spring Apps docs](https://learn.microsoft.com/azure/spring-apps/enterprise/)
* [Deploy Spring Apps from scratch](https://github.com/microsoft/azure-spring-cloud-training)
* [Deploy existing Spring Apps](https://github.com/Azure-Samples/azure-spring-cloud)
* [Azure for Java Cloud Developers](https://docs.microsoft.com/en-us/azure/java/)
* [Azure for Java Cloud Developers](https://learn.microsoft.com/azure/java/)
* [Spring Cloud Azure](https://spring.io/projects/spring-cloud-azure)
* [Spring Cloud](https://spring.io/projects/spring-cloud)
* [Spring Cloud Gateway](https://docs.vmware.com/en/VMware-Spring-Cloud-Gateway-for-Kubernetes/index.html)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ Azure Spring Apps Enterprise を使用すると、Azure 上で Spring Boot ア

## 事前準備

Azure 上に Java アプリケーションをデプロイするため、Azure サブスクリプションが必要です。 Azure のアカウントをお持ちでない場合、[MSDN サブスクライバーの特典](https://azure.microsoft.com/pricing/member-offers/msdn-benefits-details/)を有効にするか、もしくは[無料の Azure アカウント](https://azure.microsoft.com/free/)を作成してください。
Azure 上に Java アプリケーションをデプロイするため、Azure サブスクリプションが必要です。 Azure のアカウントをお持ちでない場合、[MSDN サブスクライバーの特典](https://azure.microsoft.com/pricing/member-offers/credit-for-visual-studio-subscribers/)を有効にするか、もしくは[無料の Azure アカウント](https://azure.microsoft.com/pricing/purchase-options/azure-account)を作成してください。

さらに、次のものが必要になります。

| [Azure CLI version 2.50.0 以降](https://docs.microsoft.com/cli/azure/install-azure-cli?view=azure-cli-latest)
| [Azure CLI version 2.50.0 以降](https://learn.microsoft.com/cli/azure/install-azure-cli?view=azure-cli-latest)
| [Git](https://git-scm.com/)
| [`jq` コマンド](https://stedolan.github.io/jq/download/)
|
Expand Down Expand Up @@ -108,7 +108,7 @@ az extension remove --name spring
az extension add --name spring
```

上記のコマンドを実装した後、`spring` のバージョンが `1.14.0` 以上になっているかを確認してください。更新されていない場合は、[Azure CLI の再インストール](https://docs.microsoft.com/ja-jp/cli/azure/install-azure-cli)を試してください。
上記のコマンドを実装した後、`spring` のバージョンが `1.14.0` 以上になっているかを確認してください。更新されていない場合は、[Azure CLI の再インストール](https://learn.microsoft.com/ja-jp/cli/azure/install-azure-cli)を試してください。

## レポジトリを Clone

Expand Down Expand Up @@ -175,7 +175,7 @@ export LOG_ANALYTICS_WORKSPACE=log-analytics-name # existing workspace or one
export REGION=region-name # choose a region with Enterprise tier support
```

REGION の値は、Azure Spring Apps が利用可能なリージョン (eastus など) を設定する必要があります。Azure Spring アプリで利用可能なすべてのリージョンについては、[こちら](https://azure.microsoft.com/en-us/global-infrastructure/services/?products=spring-apps&regions=all)を参照してください。
REGION の値は、Azure Spring Apps が利用可能なリージョン (eastus など) を設定する必要があります。Azure Spring アプリで利用可能なすべてのリージョンについては、[こちら](https://azure.microsoft.com/explore/global-infrastructure/products-by-region/)を参照してください。

次に、source コマンドで環境を設定します。

Expand Down Expand Up @@ -573,7 +573,7 @@ az ad app credential reset --id ${APPLICATION_ID} --append > ../resources/json/s
az ad sp create --id ${APPLICATION_ID}
```

アプリケーションの登録に関する詳細な手順については、[こちら](https://docs.microsoft.com/en-us/azure/active-directory/develop/quickstart-register-app)を参照してください。
アプリケーションの登録に関する詳細な手順については、[こちら](https://learn.microsoft.com/en-us/azure/active-directory/develop/quickstart-register-app)を参照してください。

### SSO デプロイのための環境の準備

Expand Down Expand Up @@ -608,7 +608,7 @@ az ad app update --id ${APPLICATION_ID} \
--web-redirect-uris "https://${GATEWAY_URL}/login/oauth2/code/sso" "https://${PORTAL_URL}/oauth2-redirect.html" "https://${PORTAL_URL}/login/oauth2/code/sso"
```

リダイレクト URI の詳細については、[こちら](https://docs.microsoft.com/en-us/azure/active-directory/develop/quickstart-register-app#add-a-redirect-uri)を参照してください。
リダイレクト URI の詳細については、[こちら](https://learn.microsoft.com/en-us/azure/active-directory/develop/quickstart-register-app#add-a-redirect-uri)を参照してください。

### 既存の SSO ID プロバイダーの使用

Expand Down Expand Up @@ -1669,7 +1669,7 @@ az ad sp create-for-rbac --name "change-me" \
### GitHub Actions にシークレットを追加

> GitHub Actions にシークレットを追加する詳細な手順については、[こちら](https://docs.microsoft.com/azure/spring-cloud/how-to-github-actions?pivots=programming-language-java#set-up-github-repository-and-authenticate-1)を参照してください。
> GitHub Actions にシークレットを追加する詳細な手順については、[こちら](https://learn.microsoft.com/azure/spring-apps/how-to-github-actions?pivots=programming-language-java#set-up-github-repository-and-authenticate-1)を参照してください。
次のシークレット (8x) を GitHub Actions に追加します

Expand Down Expand Up @@ -1921,11 +1921,11 @@ cd apps/acme-assist
このクイック・スタートでは、Azure CLI を使用して多言語アプリケーションを Azure Spring Apps にデプロイしました。 また、エンタープライズ版を利用し VMware Tanzu コンポーネントを設定しました。
Azure Spring Apps もしくは VMware Tanzu コンポーネントの詳細は下記から入手できます。
* [Azure Spring Apps](https://azure.microsoft.com/en-us/services/spring-cloud/)
* [Azure Spring Apps docs](https://docs.microsoft.com/en-us/azure/spring-cloud/quickstart-provision-service-instance-enterprise?tabs=azure-portal)
* [Azure Spring Apps](https://azure.microsoft.com/products/spring-apps/)
* [Azure Spring Apps docs](https://learn.microsoft.com/azure/spring-apps/enterprise/)
* [Deploy Spring Apps from scratch](https://github.com/microsoft/azure-spring-cloud-training)
* [Deploy existing Spring Apps](https://github.com/Azure-Samples/azure-spring-cloud)
* [Azure for Java Cloud Developers](https://docs.microsoft.com/en-us/azure/java/)
* [Azure for Java Cloud Developers](https://learn.microsoft.com/en-us/azure/java/)
* [Spring Cloud Azure](https://spring.io/projects/spring-cloud-azure)
* [Spring Cloud](https://spring.io/projects/spring-cloud)
* [Spring Cloud Gateway](https://docs.vmware.com/en/VMware-Spring-Cloud-Gateway-for-Kubernetes/index.html)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@
また、エンタープライズティアで VMware Tanzu コンポーネントを設定しました。
Azure Spring Apps や VMware Tanzu コンポーネントについてさらに詳しく知りたい場合は、下記をご覧ください:
* [Azure Spring Apps](https://azure.microsoft.com/services/spring-cloud/)
* [Azure Spring Apps docs](https://docs.microsoft.com/azure/spring-cloud/quickstart-provision-service-instance-enterprise?tabs=azure-portal)
* [Azure Spring Apps](https://azure.microsoft.com/products/spring-apps/)
* [Azure Spring Apps docs](https://learn.microsoft.com/azure/spring-apps/enterprise/)
* [Deploy Spring Apps from scratch](https://github.com/microsoft/azure-spring-cloud-training)
* [Deploy existing Spring Apps](https://github.com/Azure-Samples/azure-spring-cloud)
* [Azure for Java Cloud Developers](https://docs.microsoft.com/en-us/azure/java/)
* [Azure for Java Cloud Developers](https://learn.microsoft.com/azure/java/)
* [Spring Cloud Azure](https://spring.io/projects/spring-cloud-azure)
* [Spring Cloud](https://spring.io/projects/spring-cloud)
* [Spring Cloud Gateway](https://docs.vmware.com/en/VMware-Spring-Cloud-Gateway-for-Kubernetes/index.html)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Azure Key Vault は一旦作成すると、リソースを削除した後も、

この Codespaces の環境には、次のソフトウェアがインストールされています。

1. [JDK 17](https://docs.microsoft.com/java/openjdk/download?WT.mc_id=azurespringcloud-github-yoterada#openjdk-17)
1. [JDK 17](https://learn.microsoft.com/java/openjdk/download?WT.mc_id=azurespringcloud-github-yoterada#openjdk-17)

```shell
java -version
Expand All @@ -78,7 +78,7 @@ Azure Key Vault は一旦作成すると、リソースを削除した後も、
which java
```
3. [Azure CLI version 2.31.0 もしくはそれ以降](https://docs.microsoft.com/cli/azure/install-azure-cli?view=azure-cli-latest):現在インストールされている Azure CLI のバージョンを確認するためには、下記のコマンドを実行します。
3. [Azure CLI version 2.31.0 もしくはそれ以降](https://learn.microsoft.com/cli/azure/install-azure-cli?view=azure-cli-latest):現在インストールされている Azure CLI のバージョンを確認するためには、下記のコマンドを実行します。

```shell
which az
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@
// "tagsArray": {
// "type": "object",
// "metadata": {
// "description": "See documentation on tags: https://docs.microsoft.com/azure/azure-resource-manager/management/tag-resources."
// "description": "See documentation on tags: https://learn.microsoft.com/azure/azure-resource-manager/management/tag-resources."
// }
// }
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ az ad app update --id ${APPLICATION_ID} \
"https://${PORTAL_URL}/oauth2-redirect.html" "https://${PORTAL_URL}/login/oauth2/code/sso"
```

リダイレクト先の URI に関する詳細な情報は[こちら](https://docs.microsoft.com/ja-jp/azure/active-directory/develop/quickstart-register-app#add-a-redirect-uri)をご参照ください。
リダイレクト先の URI に関する詳細な情報は[こちら](https://learn.microsoft.com/ja-jp/azure/active-directory/develop/quickstart-register-app#add-a-redirect-uri)をご参照ください。

アプリケーションに対してサービスプリンシパルを割り当てます。

```shell
az ad sp create --id ${APPLICATION_ID}
```

アプリケーションの登録に関するより詳細な情報は、[こちら](https://docs.microsoft.com/ja-jp/azure/active-directory/develop/quickstart-register-app)をご参照ください。
アプリケーションの登録に関するより詳細な情報は、[こちら](https://learn.microsoft.com/ja-jp/azure/active-directory/develop/quickstart-register-app)をご参照ください。

### 1.1. SSO を有効化するための環境設定の準備

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ Github Codespaces を利用して、開発環境・実行環境を構築可能
2. GitHu Codespaces へのアクセス許可が与えられた後、[https://github.com/Azure-Samples/acme-fitness-store/tree/Azure に移動し、「Code」ボタンをクリックしてください。リストされているオプションとして「codespaces」が実行できるようになっています。このオプションが表示されない場合は、Azure-Samples 組織に追加されていないか、Github ID が組織でまだアクティブになっていない可能性があります。この問題についてワークショップコーディネーターにご相談ください。招待状が送信されたメールが場合は、https://github.com/Azure-Samples/acme-fitness-store/invitations にアクセスして直接申請できます。

3. 上記の手順が成功した場合、Codespaces の VSCode 内でターミナルを開くことができるようになっています。Codespaces の詳細については、[こちら](https://docs.github.com/codespaces)をご参照ください。この Codespaces の環境では、次のソフトウェアがインストールされています。
1. * [JDK 17](https://docs.microsoft.com/java/openjdk/download?WT.mc_id=azurespringcloud-github-judubois#openjdk-17)
1. * [JDK 17](https://learn.microsoft.com/java/openjdk/download?WT.mc_id=azurespringcloud-github-judubois#openjdk-17)
2. * 環境変数は、`JAVA_HOME` は JDK のインストール・パスを設定する必要があります。このパスで指定するディレクトリには、`bin`, `jre`, `lib` とそのサブディレクトリが必要です。さらに、`PATH` 変数に `${JAVA_HOME}/bin` ディレクトリが含まれていることも確認してください。テストするには、bashシェルに `which javac` 入力して、結果のパスが内のファイルを指していることを確認します。
3. * [Azure CLI バージョン 2.31.0](https://docs.microsoft.com/cli/azure/install-azure-cli?view=azure-cli-latest) 以降のバージョン。現在の Azure CLI インストールのバージョンを確認するには、次のコマンドを実行してください。
3. * [Azure CLI バージョン 2.31.0](https://learn.microsoft.com/cli/azure/install-azure-cli?view=azure-cli-latest) 以降のバージョン。現在の Azure CLI インストールのバージョンを確認するには、次のコマンドを実行してください。

```bash
az --version
Expand Down
Loading

0 comments on commit 3671fd3

Please sign in to comment.