Skip to content

Commit e97d0c0

Browse files
committed
fix note working
1 parent 08a9571 commit e97d0c0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/aks/tutorial-kubernetes-scale.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ az aks show --resource-group myResourceGroup --name myAKSCluster --query kuberne
7272
```
7373

7474
> [!NOTE]
75-
> If your AKS cluster is less than *1.10*, the Metrics Server is not automatically installed. To install, clone the `metrics-server` GitHub repo and install the example resource definitions. To learn more about these YAML definitions, see [Deployment][metrics-server-github].
75+
> If your AKS cluster is less than *1.10*, the Metrics Server is not automatically installed. Metrics Server installation manifests are available as a `components.yaml` asset on Metrics Server releases, which means you can install them via a url. To learn more about these YAML definitions, see the [Deployment][metrics-server-github] section of the readme.
7676
>
77+
> Example installation:
7778
> ```console
78-
> git clone https://github.com/kubernetes-incubator/metrics-server.git
79-
> kubectl create -f metrics-server/deploy/1.8+/
79+
> kubectl apply -f https://github.com/kubernetes-sigs/metrics-server/releases/download/v0.3.6/components.yaml
8080
> ```
8181
8282
To use the autoscaler, all containers in your pods and your pods must have CPU requests and limits defined. In the `azure-vote-front` deployment, the front-end container already requests 0.25 CPU, with a limit of 0.5 CPU. These resource requests and limits are defined as shown in the following example snippet:

0 commit comments

Comments
 (0)