You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/aks/kubernetes-action.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ ms.custom: github-actions-azure
19
19
20
20
## GitHub Actions for AKS
21
21
22
-
GitHub Actions helps you automate your software development workflows from within GitHub. For more details on using GitHub Actions with Azure, see [GitHub Actions for Azure][github-actions].
22
+
With GiHub Actions, you can automate your software development workflows from within GitHub. For more information, see [GitHub Actions for Azure][github-actions].
23
23
24
24
The following table lists the available actions for AKS:
25
25
@@ -43,7 +43,7 @@ The following table lists the available actions for AKS:
43
43
As an example, you can use GitHub Actions to deploy an application to your AKS cluster every time a change is pushed to your GitHub repository. This example uses the [Azure Vote][gh-azure-vote] application.
44
44
45
45
> [!NOTE]
46
-
> This example uses a service principal for authentication with your ACR and AKS cluster. Alternatively, you can configure Open ID Connect (OIDC) and update the `azure/login` action to use OIDC. For more details, see [Set up Azure Login with OpenID Connect authentication][oidc-auth].
46
+
> This example uses a service principal for authentication with your ACR and AKS cluster. Alternatively, you can configure Open ID Connect (OIDC) and update the `azure/login` action to use OIDC. For more information, see [Set up Azure Login with OpenID Connect authentication][oidc-auth].
47
47
48
48
### Fork and update the repository
49
49
@@ -155,9 +155,9 @@ For more information about creating secrets, see [Encrypted Secrets][github-acti
155
155
pull-images: false
156
156
```
157
157
158
-
The `on` section contains the event that triggers the action. In the above file, the action triggers when a change is pushed to the `azure-vote` directory.
158
+
The `on` section contains the event that triggers the action. In the example file, the action triggers when a change is pushed to the `azure-vote` directory.
159
159
160
-
The `steps` section contains each distinct action, which execute in order:
160
+
The `steps` section contains each distinct action:
161
161
162
162
1. *Checkout source code* uses the [GitHub Actions Checkout Action][actions/checkout] to clone the repository.
163
163
2. *ACR build* uses the [Azure Container Registry Build Action][azure/acr-build] to build the image and upload it to your registry.
0 commit comments