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: docs/releases/1.19-NOTES.md
+4
Original file line number
Diff line number
Diff line change
@@ -42,6 +42,8 @@ The expiration times vary randomly so that nodes are likely to have their certs
42
42
43
43
* New command for deleting a single instance: [kops delete instance](/docs/cli/kops_delete_instance/)
44
44
45
+
* Metrics Server is now available as a configurable addon. Add `spec.metricsServer.enabled: true` to the cluster spec to enable.
46
+
45
47
# Breaking changes
46
48
47
49
* Support for Kubernetes 1.9 and 1.10 has been removed.
@@ -62,6 +64,8 @@ The expiration times vary randomly so that nodes are likely to have their certs
62
64
63
65
* Support for feature flag `Terraform-0.12` has been deprecated and will be removed in kops 1.20. All generated Terraform HCL2/JSON files will support versions `0.12.26+` and `0.13.0+`.
64
66
67
+
* The [manifest based metrics server addon](https://github.com/kubernetes/kops/tree/master/addons/metrics-server) has been deprecated in favour of a configurable addon.
Copy file name to clipboardexpand all lines: k8s/crds/kops.k8s.io_clusters.yaml
+10
Original file line number
Diff line number
Diff line change
@@ -2088,6 +2088,16 @@ spec:
2088
2088
masterPublicName:
2089
2089
description: MasterPublicName is the external DNS name for the master nodes
2090
2090
type: string
2091
+
metricsServer:
2092
+
description: MetricsServerConfig determines the metrics server configuration.
2093
+
properties:
2094
+
enabled:
2095
+
description: 'Enabled enables the metrics server. Default: false'
2096
+
type: boolean
2097
+
image:
2098
+
description: 'Image is the docker container used. Default: the latest supported image for the specified kubernetes version.'
2099
+
type: string
2100
+
type: object
2091
2101
networkCIDR:
2092
2102
description: NetworkCIDR is the CIDR used for the AWS VPC / GCE Network, or otherwise allocated to k8s This is a real CIDR, not the internal k8s network On AWS, it maps to the VPC CIDR. It is not required on GCE.
0 commit comments