volume-mount

This commit is contained in:
huanqing.shao
2019-10-17 23:05:32 +08:00
parent 0cf7b605dc
commit b04a44e4d4
9 changed files with 209 additions and 18 deletions

View File

@@ -1,7 +1,13 @@
<template>
<div :style="$isDev ? 'background-color: grey;' : ''">
<p>
<Qq></Qq> 群号: 808894550 <span style="color: red; font-weight: 500;">在线答疑</span>也可以扫描本文末尾的二维码加群
<div :style="$isDev ? 'background-color: #grey;' : ''">
<p style="background-color: #f3f5f7;padding: 10px 5px 5px 5px;">
<Qq></Qq>
群号: 808894550
<span style="color: red; font-weight: 500;">在线答疑</span>
初学者可选择在线课程语言更通俗
<span @click="$sendGaEvent('极客时间', '极客时间', '极客时间:' + $page.path)">
<a target="_blank" href="https://time.geekbang.org/column/intro/100015201?code=MH1Wu456g0ZsrKtQI7QidivKV2hVvzerAUxDz5pOuQs%3D">深入剖析Kubernetes</a>
</span>
</p>
<slot></slot>
<!-- <div class="adsense-page-top">

View File

@@ -202,6 +202,7 @@ module.exports = {
// ['install-k8s-upgrade', '升级Kubernetes集群'],
'upgrade-k8s/1.15.x-1.15.4',
'upgrade-k8s/1.15.x-1.16.x',
'upgrade-k8s/calico-3.8-3.9',
]
},
{
@@ -371,6 +372,7 @@ module.exports = {
collapsable: true,
children: [
'k8s-intermediate/persistent/volume',
'k8s-intermediate/persistent/volume-mount-point.html',
'k8s-intermediate/persistent/pv',
'k8s-intermediate/persistent/storage-class',
'k8s-intermediate/persistent/nfs',
@@ -462,6 +464,13 @@ module.exports = {
'k8s-advanced/schedule/framework',
]
},
{
title: '策略',
collapsable: true,
children: [
'k8s-advanced/policy/lr',
]
},
]
},
{

View File

@@ -31,6 +31,6 @@ cp -i /etc/kubernetes/admin.conf /root/.kube/config
# 安装 calico 网络插件
# 参考文档 https://docs.projectcalico.org/v3.9/getting-started/kubernetes/
rm -f calico.yaml
wget https://docs.projectcalico.org/v3.9/manifests/calico.yaml
wget https://docs.projectcalico.org/v3.9/manifests/calico.yaml --no-check-certificate
sed -i "s#192\.168\.0\.0/16#${POD_SUBNET}#" calico.yaml
kubectl apply -f calico.yaml