Skip to content

Commit

Permalink
learningplan
Browse files Browse the repository at this point in the history
  • Loading branch information
shaohq committed Dec 29, 2019
1 parent 522f824 commit 496fbea
Show file tree
Hide file tree
Showing 7 changed files with 48 additions and 8 deletions.
15 changes: 15 additions & 0 deletions .vuepress/comp/LearningPlan.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<template>
<div>
Plan
</div>
</template>

<script>
export default {
}
</script>

<style>
</style>
10 changes: 10 additions & 0 deletions .vuepress/comp/index.js
Original file line number Diff line number Diff line change
@@ -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)
}
}
4 changes: 4 additions & 0 deletions .vuepress/enhanceApp.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -23,6 +25,7 @@ const VueFractionGrid = {
}
}


export default ({
Vue, // VuePress 正在使用的 Vue 构造函数
options, // 附加到根实例的一些选项
Expand All @@ -39,6 +42,7 @@ export default ({
tablet: '719px 959px'
}
})
Vue.use(Comp)
Vue.prototype.$sendGaEvent = function (category, action, label) {
let e = {
hitType: 'event',
Expand Down
Binary file added .vuepress/public/images/zanshang.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 6 additions & 6 deletions .vuepress/theme/components/JoinCommunity.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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>
Expand All @@ -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>
Expand Down
5 changes: 3 additions & 2 deletions learning/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ meta:
</div>
</div>



## Kubernetes免费教程

本教程的主要依据是:Kubernetes 官网文档,以及使用 Kubernetes 落地 Spring Cloud 微服务并投产的实战经验。适用人群:
Expand Down Expand Up @@ -210,3 +208,6 @@ meta:
* [导入部署配置](/learning/k8s-practice/ocp/import.html)

Kuboard提供免费K8S教程、K8S培训


<!-- <LearningPlan/> -->
10 changes: 10 additions & 0 deletions support/change-log/change-log-on-the-way.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
Kuboard v1.0.x 的更新说明


**BUG 修复**

* 工作负载编辑器 --> Ingress --> 当启用前缀时,Ingress中选择的ServiceName缺少前缀
* 工作负载编辑器 --> 容器 --> 添加环境变量但不填写时,界面无响应





* 日志界面支持 ctrl + F
* 更新版本时,可以通过下拉列表选择仓库中的版本号
* 导入导出时,需要支持 nfs 等类型的数据卷
Expand Down

0 comments on commit 496fbea

Please sign in to comment.