Skip to content

Commit d5c9683

Browse files
authored
Merge pull request #237014 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents c31f196 + fcb1fb0 commit d5c9683

29 files changed

+37
-34
lines changed

articles/application-gateway/ingress-controller-annotations.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ appgw.ingress.kubernetes.io/backend-path-prefix: <path prefix>
4242
### Example
4343
4444
```yaml
45-
apiVersion: apiVersion: networking.k8s.io/v1
45+
apiVersion: networking.k8s.io/v1
4646
kind: Ingress
4747
metadata:
4848
name: go-server-ingress-bkprefix
@@ -85,7 +85,7 @@ appgw.ingress.kubernetes.io/ssl-redirect: "true"
8585
### Example
8686

8787
```yaml
88-
apiVersion: apiVersion: networking.k8s.io/v1
88+
apiVersion: networking.k8s.io/v1
8989
kind: Ingress
9090
metadata:
9191
name: go-server-ingress-redirect
@@ -124,7 +124,7 @@ appgw.ingress.kubernetes.io/connection-draining-timeout: "60"
124124
### Example
125125

126126
```yaml
127-
apiVersion: apiVersion: networking.k8s.io/v1
127+
apiVersion: networking.k8s.io/v1
128128
kind: Ingress
129129
metadata:
130130
name: go-server-ingress-drain
@@ -159,7 +159,7 @@ appgw.ingress.kubernetes.io/cookie-based-affinity: "true"
159159
### Example
160160

161161
```yaml
162-
apiVersion: apiVersion: networking.k8s.io/v1
162+
apiVersion: networking.k8s.io/v1
163163
kind: Ingress
164164
metadata:
165165
name: go-server-ingress-affinity
@@ -193,7 +193,7 @@ appgw.ingress.kubernetes.io/request-timeout: "20"
193193
### Example
194194

195195
```yaml
196-
apiVersion: apiVersion: networking.k8s.io/v1
196+
apiVersion: networking.k8s.io/v1
197197
kind: Ingress
198198
metadata:
199199
name: go-server-ingress-timeout
@@ -231,7 +231,7 @@ appgw.ingress.kubernetes.io/use-private-ip: "true"
231231
### Example
232232

233233
```yaml
234-
apiVersion: apiVersion: networking.k8s.io/v1
234+
apiVersion: networking.k8s.io/v1
235235
kind: Ingress
236236
metadata:
237237
name: go-server-ingress-timeout
@@ -270,7 +270,7 @@ appgw.ingress.kubernetes.io/backend-protocol: "https"
270270
### Example
271271

272272
```yaml
273-
apiVersion: apiVersion: networking.k8s.io/v1
273+
apiVersion: networking.k8s.io/v1
274274
kind: Ingress
275275
metadata:
276276
name: go-server-ingress-timeout

articles/application-gateway/ingress-controller-letsencrypt-certificate-application-gateway.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -118,17 +118,17 @@ Use the following steps to install [cert-manager](https://docs.cert-manager.io)
118118
kubernetes.io/ingress.class: azure/application-gateway
119119
cert-manager.io/cluster-issuer: letsencrypt-staging
120120
spec:
121-
tls:
122-
- hosts:
121+
tls:
122+
- hosts:
123123
- <PLACEHOLDERS.COM>
124124
secretName: guestbook-secret-name
125-
rules:
126-
- host: <PLACEHOLDERS.COM>
127-
http:
128-
paths:
129-
- backend:
130-
serviceName: frontend
131-
servicePort: 80
125+
rules:
126+
- host: <PLACEHOLDERS.COM>
127+
http:
128+
paths:
129+
- backend:
130+
serviceName: frontend
131+
servicePort: 80
132132
EOF
133133
```
134134

articles/azure-arc/servers/manage-agent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ This parameter specifies a resource in Azure Resource Manager to delete from Azu
7070
> [!NOTE]
7171
> If you have deployed one or more Azure VM extensions to your Azure Arc-enabled server and you delete its registration in Azure, the extensions remain installed and may continue performing their functions. Any machine intended to be retired or no longer managed by Azure Arc-enabled servers should first have its [extensions removed](#step-1-remove-vm-extensions) before removing its registration from Azure.
7272
73-
To disconnect using a service principal, run the command below. Be sure to specify a service principal that has the required roles for disconnecting servers; this will not be the same service principal that was used to onboard the server:
73+
To disconnect using a service principal, run the command below. Be sure to specify a service principal that has the required roles for disconnecting servers, i.e. the Azure Connected Machine Resource Administrator role. This will not be the same service principal that was used to onboard the server:
7474

7575
`azcmagent disconnect --service-principal-id <serviceprincipalAppID> --service-principal-secret <serviceprincipalPassword>`
7676

articles/azure-arc/servers/onboard-service-principal.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,14 @@ Before you start connecting your machines, review the following requirements:
1717
1. Make sure you have administrator permission on the machines you want to onboard.
1818

1919
Administrator permissions are required to install the Connected Machine agent on the machines; on Linux by using the root account, and on Windows as a member of the Local Administrators group.
20-
1. Review the [prerequisites](prerequisites.md) and verify that your subscription and resources meet the requirements. You will need to have the **Azure Connected Machine Onboarding** role or the **Contributor** role for the resource group of the machine.
20+
1. Review the [prerequisites](prerequisites.md) and verify that your subscription and resources meet the requirements. You will need to have the **Azure Connected Machine Onboarding** role or the **Contributor** role for the resource group of the machine. Make sure to register the below Azure resource providers beforehand in your target subscription.
21+
22+
* Microsoft.HybridCompute
23+
* Microsoft.GuestConfiguration
24+
* Microsoft.HybridConnectivity
25+
* Microsoft.AzureArcData (if you plan to Arc-enable SQL Servers)
26+
27+
See detailed how to here: [Azure resource providers prerequisites](prerequisites.md#azure-resource-providers)
2128

2229
For information about supported regions and other related considerations, see [supported Azure regions](overview.md#supported-regions). Also review our [at-scale planning guide](plan-at-scale-deployment.md) to understand the design and deployment criteria, as well as our management and monitoring recommendations.
2330

@@ -146,6 +153,3 @@ After you install the agent and configure it to connect to Azure Arc-enabled ser
146153
- Review the [Planning and deployment guide](plan-at-scale-deployment.md) to plan for deploying Azure Arc-enabled servers at any scale and implement centralized management and monitoring.
147154
- Learn how to [troubleshoot agent connection issues](troubleshoot-agent-onboard.md).
148155
- Learn how to manage your machines using [Azure Policy](../../governance/policy/overview.md) for such things as VM [guest configuration](../../governance/machine-configuration/overview.md), verifying that machines are reporting to the expected Log Analytics workspace, monitoring with [VM insights](../../azure-monitor/vm/vminsights-enable-policy.md), and more.
149-
```
150-
151-
```
22.2 KB
Loading
-6.66 KB
Loading
-15.5 KB
Loading
-6.13 KB
Loading
-23 KB
Loading
-34 KB
Loading

0 commit comments

Comments
 (0)