Skip to content
This repository has been archived by the owner on Oct 24, 2023. It is now read-only.

feat: add support for Kubernetes 1.15.0-rc.1 #1469

Merged
merged 2 commits into from
Jun 12, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packer/install-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ for TILLER_VERSION in ${TILLER_VERSIONS}; do
done

CLUSTER_AUTOSCALER_VERSIONS="
1.15.0
1.14.2
1.14.0
1.13.4
Expand Down
1 change: 1 addition & 0 deletions pkg/api/common/versions.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ var AllKubernetesSupportedVersions = map[string]bool{
"1.15.0-alpha.3": true,
"1.15.0-beta.1": true,
"1.15.0-beta.2": true,
"1.15.0-rc.1": true,
}

// GetDefaultKubernetesVersion returns the default Kubernetes version, that is the latest patch of the default release
Expand Down
2 changes: 1 addition & 1 deletion pkg/api/k8s_versions.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var k8sComponentVersions = map[string]map[string]string{
"aci-connector": "virtual-kubelet:latest",
ContainerMonitoringAddonName: "oms:ciprod01092019",
AzureCNINetworkMonitoringAddonName: "networkmonitor:v0.0.6",
"cluster-autoscaler": "cluster-autoscaler:v1.14.2",
"cluster-autoscaler": "cluster-autoscaler:v1.15.0",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fun!

NVIDIADevicePluginAddonName: "k8s-device-plugin:1.11",
"k8s-dns-sidecar": "k8s-dns-sidecar-amd64:1.14.10",
"nodestatusfreq": DefaultKubernetesNodeStatusUpdateFrequency,
Expand Down