learningplan
This commit is contained in:
15
.vuepress/comp/LearningPlan.vue
Normal file
15
.vuepress/comp/LearningPlan.vue
Normal file
@ -0,0 +1,15 @@
|
||||
<template>
|
||||
<div>
|
||||
Plan
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
10
.vuepress/comp/index.js
Normal file
10
.vuepress/comp/index.js
Normal file
@ -0,0 +1,10 @@
|
||||
let components = [
|
||||
{ name: 'LearningPlan', component: () => import(`./LearningPlan.vue`) }
|
||||
]
|
||||
|
||||
export default function (Vue) {
|
||||
for (let component of components) {
|
||||
window.console.log('注册组件 ', component.name)
|
||||
Vue.component(component.name, component.component)
|
||||
}
|
||||
}
|
||||
@ -14,6 +14,8 @@ import Grid from './grid/Grid'
|
||||
import GridItem from './grid/GridItem'
|
||||
import defaults from './grid/utils/defaults'
|
||||
|
||||
import Comp from './comp/index'
|
||||
|
||||
const VueFractionGrid = {
|
||||
install (Vue, options) {
|
||||
const config = Object.assign(defaults, options)
|
||||
@ -23,6 +25,7 @@ const VueFractionGrid = {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
export default ({
|
||||
Vue, // VuePress 正在使用的 Vue 构造函数
|
||||
options, // 附加到根实例的一些选项
|
||||
@ -39,6 +42,7 @@ export default ({
|
||||
tablet: '719px 959px'
|
||||
}
|
||||
})
|
||||
Vue.use(Comp)
|
||||
Vue.prototype.$sendGaEvent = function (category, action, label) {
|
||||
let e = {
|
||||
hitType: 'event',
|
||||
|
||||
BIN
.vuepress/public/images/zanshang.png
Normal file
BIN
.vuepress/public/images/zanshang.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 379 KiB |
@ -4,7 +4,7 @@
|
||||
|
||||
<div>
|
||||
<div class="row" style="margin-top: 1rem;">
|
||||
<div class="col-md-6 col-sm-12">
|
||||
<div class="col-md-4 col-sm-12">
|
||||
<b-card style="height: 100%; " shadow="none" :body-style="{padding: '0rem 1.5rem'}"
|
||||
data-aos="fade-up" data-aos-duration="800">
|
||||
<h4>QQ群</h4>
|
||||
@ -18,7 +18,7 @@
|
||||
</p>
|
||||
</b-card>
|
||||
</div>
|
||||
<div class="col-md-6 col-sm-12">
|
||||
<div class="col-md-4 col-sm-12">
|
||||
<b-card style="height: 100%; color: #2c3e50; line-height: 1.7; " shadow="none" :body-style="{padding: '0rem 1.5rem'}"
|
||||
data-aos="fade-up" data-aos-duration="1000">
|
||||
<h4>微信群</h4>
|
||||
@ -33,20 +33,20 @@
|
||||
</div>
|
||||
</b-card>
|
||||
</div>
|
||||
<!-- <div class="col-md-4 col-sm-12">
|
||||
<div class="col-md-4 col-sm-12">
|
||||
<b-card style="height: 100%; color: #2c3e50; line-height: 1.7; border-color: #f2be45; background-color: rgba(242, 190, 69, 0.1)" shadow="none" :body-style="{padding: '0rem 1.5rem'}"
|
||||
data-aos="fade-up" data-aos-duration="1200">
|
||||
<h4>VIP群</h4>
|
||||
<h4>赞赏</h4>
|
||||
<div>
|
||||
<div style="margin-top: 10px;">
|
||||
<span>微信扫码</span>
|
||||
<p style="margin-top: 10px; margin-bottom: 0; text-align: center;">
|
||||
<img src="/images/qr-vip.jpeg" style="width: 150px;"></img>
|
||||
<img src="/images/zanshang.png" style="width: 150px; padding: 6px; background-color: white;"></img>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</b-card>
|
||||
</div> -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -29,8 +29,6 @@ meta:
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
## Kubernetes免费教程
|
||||
|
||||
本教程的主要依据是:Kubernetes 官网文档,以及使用 Kubernetes 落地 Spring Cloud 微服务并投产的实战经验。适用人群:
|
||||
@ -210,3 +208,6 @@ meta:
|
||||
* [导入部署配置](/learning/k8s-practice/ocp/import.html)
|
||||
|
||||
Kuboard提供免费K8S教程、K8S培训
|
||||
|
||||
|
||||
<!-- <LearningPlan/> -->
|
||||
|
||||
@ -1,5 +1,15 @@
|
||||
Kuboard v1.0.x 的更新说明
|
||||
|
||||
|
||||
**BUG 修复**
|
||||
|
||||
* 工作负载编辑器 --> Ingress --> 当启用前缀时,Ingress中选择的ServiceName缺少前缀
|
||||
* 工作负载编辑器 --> 容器 --> 添加环境变量但不填写时,界面无响应
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
* 日志界面支持 ctrl + F
|
||||
* 更新版本时,可以通过下拉列表选择仓库中的版本号
|
||||
* 导入导出时,需要支持 nfs 等类型的数据卷
|
||||
|
||||
Reference in New Issue
Block a user