X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=meta-oran%2Frecipes-containers%2Fkubernetes%2Fkubernetes_1.15.2.bb;h=462b048afce558797c357278dd103230a6b51d44;hb=a7b4cfae61500070bd58725470e341ce27cb2948;hp=24e3537a9d2a2a22a535292b7ba1af638d122456;hpb=bdd0fa312c00914c3e8d3c99a7edbe00b23b7cfb;p=pti%2Frtp.git diff --git a/meta-oran/recipes-containers/kubernetes/kubernetes_1.15.2.bb b/meta-oran/recipes-containers/kubernetes/kubernetes_1.15.2.bb index 24e3537..462b048 100644 --- a/meta-oran/recipes-containers/kubernetes/kubernetes_1.15.2.bb +++ b/meta-oran/recipes-containers/kubernetes/kubernetes_1.15.2.bb @@ -1,6 +1,17 @@ # # Copyright (C) 2019 Wind River Systems, Inc. # +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. require kubernetes.inc @@ -8,4 +19,14 @@ PV = "1.15.2+git${SRCREV_kubernetes}" SRCREV_kubernetes = "f6278300bebbb750328ac16ee6dd3aa7d3549568" SRC_BRANCH = "release-1.15" -inherit ${@bb.utils.contains('GOVERSION', '1.2.%', 'go112', '', d)} +SRC_URI += "\ + file://k8s.conf \ +" + +inherit go112 + +do_install_append() { + # Install the sysctl config for k8s + install -d ${D}${sysconfdir}/sysctl.d/ + install -m 644 -D ${WORKDIR}/k8s.conf ${D}${sysconfdir}/sysctl.d/ +}