summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@windriver.com>2018-07-04 09:36:51 -0400
committerBruce Ashfield <bruce.ashfield@windriver.com>2018-07-04 09:37:59 -0400
commit0722d15fea59ed35bb35735a02353caa53e37d4b (patch)
treeecaab3a4500ad552369812b70a967f3827bcdf63
parent43e4cd760f2ff1d4bca1ae18bac052db41716989 (diff)
downloadmeta-virtualization-0722d15fea59ed35bb35735a02353caa53e37d4b.tar.gz
k8s: update to 1.11+
Updating to the 1.11 kubernetes release. This includes the standard set of features, updates and bug fixes. One build element of note is 1.11+ requires go 1.10.2+, so the following must be set in your configuration: GOVERSION = "1.10%" Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-rw-r--r--recipes-containers/kubernetes/kubernetes_git.bb9
1 files changed, 6 insertions, 3 deletions
diff --git a/recipes-containers/kubernetes/kubernetes_git.bb b/recipes-containers/kubernetes/kubernetes_git.bb
index 1677ff48..10558ef9 100644
--- a/recipes-containers/kubernetes/kubernetes_git.bb
+++ b/recipes-containers/kubernetes/kubernetes_git.bb
@@ -5,8 +5,8 @@ applications across multiple hosts, providing basic mechanisms for deployment, \
5maintenance, and scaling of applications. \ 5maintenance, and scaling of applications. \
6" 6"
7 7
8SRCREV_kubernetes = "fc32d2f3698e36b93322a3465f63a14e9f0eaead" 8SRCREV_kubernetes = "210c9cd7e1782e9fe46938fe0368556f2166a528"
9SRC_URI = "git://github.com/kubernetes/kubernetes.git;nobranch=1;name=kubernetes \ 9SRC_URI = "git://github.com/kubernetes/kubernetes.git;branch=release-1.11;name=kubernetes \
10 " 10 "
11 11
12DEPENDS += "rsync-native \ 12DEPENDS += "rsync-native \
@@ -35,7 +35,10 @@ LIC_FILES_CHKSUM = "file://src/import/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd
35 35
36GO_IMPORT = "import" 36GO_IMPORT = "import"
37 37
38PV = "1.10.0+git${SRCREV_kubernetes}" 38
39# Note: 1.11+ requires go 1.10.2+, so the following must be set
40# in your configuration: GOVERSION = "1.10%"
41PV = "1.11.0+git${SRCREV_kubernetes}"
39 42
40inherit systemd 43inherit systemd
41inherit go 44inherit go