Skip to content

Commit

Permalink
feat(platform): support k8s 1.17.13 (#902)
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo Ryu committed Nov 12, 2020
1 parent 2c96d0e commit ea7b26f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/spec/spec.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var (
OSs = []string{"linux"}

K8sVersionConstraint = ">= 1.10"
K8sVersions = []string{"1.18.3", "1.16.9", "1.16.6"}
K8sVersions = []string{"1.18.3", "1.17.13", "1.16.9", "1.16.6"}
K8sVersionsWithV = funk.Map(K8sVersions, func(s string) string {
return "v" + s
}).([]string)
Expand Down
1 change: 1 addition & 0 deletions web/console/src/modules/cluster/WebAPI/ClusterAPI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,7 @@ export async function modifyClusterName(clusters: CreateResource[]) {
export async function fetchCreateICK8sVersion() {
return [
{ text: '1.16.9', value: '1.16.9' },
{ text: '1.17.13', value: '1.17.13' },
{ text: '1.18.3', value: '1.18.3' }
];
}
Expand Down

0 comments on commit ea7b26f

Please sign in to comment.