-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade to EKS 1.15 + eksctl 0.16.0 + AWS CLI 2.07 + CA 1.15.5 (#46)
Bump all version to 1.15 Bump AWS CLI to v2.07 OnDemand Nodegroup does now run in Manage Nodegroups instead of unmanaged, that way we can explain the differences between those with Unmanaged, and with EKS Fargate. Change in the front page to the EKS workshop Change the order of the installation of the metric server to accommodate for installation of kube-ops-report at early stages. Aside from Kube-ops-view, kube-resource-report is now installed to show cost allocation and savings coming from EC2 Spot nodes Change of the allocation strategy to Capacity-optimized Changed some of the message to highlight capacity-optimized benefits Added extra information and changes to avoid references to Spot Instance termination handler. Using AWS Node Termination Handler instead. Jenkins change to capacity optimized is still manual, but there is a reference to the configuration that should be used instead, this probably should change in the future.
- Loading branch information
Showing
20 changed files
with
143 additions
and
286 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
content/using_ec2_spot_instances_with_eks/helm_root/deploy_metric_server.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--- | ||
title: "Deploy the Metric server" | ||
date: 2020-03-07T08:30:11-07:00 | ||
weight: 20 | ||
--- | ||
|
||
### Deploy the Metrics Server | ||
Metrics Server is a cluster-wide aggregator of resource usage data. These metrics will drive the scaling behavior of the [deployments](https://kubernetes.io/docs/concepts/workloads/controllers/deployment/). We will deploy the metrics server using `Helm` configured earlier in this workshop. | ||
|
||
``` | ||
helm install stable/metrics-server \ | ||
--name metrics-server \ | ||
--version 2.10.0 \ | ||
--namespace metrics | ||
``` | ||
|
||
### Confirm the Metrics API is available. | ||
|
||
Return to the terminal in the Cloud9 Environment | ||
``` | ||
kubectl get apiservice v1beta1.metrics.k8s.io -o yaml | ||
``` | ||
If all is well, you should see a status message similar to the one below in the response | ||
``` | ||
status: | ||
conditions: | ||
- lastTransitionTime: 2018-10-15T15:13:13Z | ||
message: all checks passed | ||
reason: Passed | ||
status: "True" | ||
type: Available | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.