Skip to content

Commit 787c3f1

Browse files
committed
update kubernetes versions
1 parent 24438ae commit 787c3f1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

operator/src/main/java/oracle/kubernetes/operator/helpers/KubernetesVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
public class KubernetesVersion {
1212
static KubernetesVersion UNREADABLE = new KubernetesVersion(0, 0);
1313
public static final KubernetesVersion TEST_VERSION = new KubernetesVersion(1, 10);
14-
private static final String[] MINIMUM_K8S_VERSIONS = {"1.10.11", "1.11.5", "1.12.3"};
14+
private static final String[] MINIMUM_K8S_VERSIONS = {"1.11.5", "1.12.3", "1.13.0"};
1515

1616
private final int major;
1717
private final int minor;

operator/src/test/java/oracle/kubernetes/operator/helpers/VersionCheckTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018, Oracle Corporation and/or its affiliates. All rights reserved.
1+
// Copyright 2018, 2019, Oracle Corporation and/or its affiliates. All rights reserved.
22
// Licensed under the Universal Permissive License v 1.0 as shown at
33
// http://oss.oracle.com/licenses/upl.
44

@@ -85,7 +85,7 @@ public static Collection<Object[]> data() {
8585
{LOG_MSG_TEST, "0", "", "", containsWarning(K8S_VERSION_TOO_LOW), noIgnores()},
8686
{LOG_MSG_TEST, "1", "6+", "", containsWarning(K8S_VERSION_TOO_LOW), noIgnores()},
8787
{LOG_MSG_TEST, "1", "10", "1+cor.0", containsWarning(K8S_VERSION_TOO_LOW), noIgnores()},
88-
{LOG_MSG_TEST, "1", "10", "11", containsInfo(K8S_VERSION_CHECK), noIgnores()},
88+
{LOG_MSG_TEST, "1", "10", "11", containsWarning(K8S_VERSION_TOO_LOW), noIgnores()},
8989
{LOG_MSG_TEST, "1", "11", "4", containsWarning(K8S_VERSION_TOO_LOW), noIgnores()},
9090
{LOG_MSG_TEST, "1", "11", "6", containsInfo(K8S_VERSION_CHECK), noIgnores()},
9191
{LOG_MSG_TEST, "1", "12", "2", containsWarning(K8S_VERSION_TOO_LOW), noIgnores()},

0 commit comments

Comments
 (0)