Skip to content

Commit

Permalink
已知问题,SSE4.2 兼容的 CPU
Browse files Browse the repository at this point in the history
  • Loading branch information
shaohq committed Mar 22, 2020
1 parent e8dbec3 commit c3d30a2
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 27 deletions.
1 change: 1 addition & 0 deletions .vuepress/config-sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -637,6 +637,7 @@ module.exports = {
collapsable: false,
children: [
'change-log/v1.0.x',
'known-issue',
]
}
],
Expand Down
29 changes: 2 additions & 27 deletions .vuepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,36 +23,11 @@ module.exports = {
s.parentNode.insertBefore(hm, s);
})();
`],
// ['script', {src: '/java-script-dist/swiper-4.5.0/js/swiper.min.js', async: true}],
// ['script', {src: "https://www.googletagmanager.com/gtag/js?id=UA-144196556-1", async: true}],
// ['script', {}, `
// window.dataLayer = window.dataLayer || [];
// function gtag(){dataLayer.push(arguments);}
// gtag('js', new Date());

// gtag('config', 'UA-144196556-1');
// `],
['script', { 'data-ad-client': "ca-pub-3313149841665250", async: true, src: "https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"}],
// <script data-ad-client="ca-pub-3313149841665250" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
// ['script', { type: 'text/javascript', src: '//downloads.mailchimp.com/js/signup-forms/popup/unique-methods/embed.js', 'data-dojo-config': 'usePlainJson: true, isDebug: false'}],
// ['script', { type: 'text/javascript'}, `window.dojoRequire(["mojo/signup-forms/Loader"], function(L) { L.start({"baseUrl":"mc.us20.list-manage.com","uuid":"2273cb19eb20bb1bc5b7745a7","lid":"f1f25d6dac","uniqueMethods":true}) })`],

// ['script', { type: 'text/javascript', async: true, src: "https://bot.4paradigm.com/web/assets/ics-web-sdk-js.js" }],
// ['script', { type: 'text/javascript' }, `
// window.onload = function() {
// if (window.innerWidth > 1360) {
// console.log('init-wechat')
// IcsWebSdkJs.init('https://bot.4paradigm.com/web/chat/15516/bbc69136-e42c-4299-ba85-c57685c8417d')
// } else {
// console.log('窗口太小,不显示机器人')
// }
// }`],

// <script type="text/javascript" src="https://bot.4paradigm.com/web/assets/ics-web-sdk-js.js"></script>

// <script type="text/javascript">

// IcsWebSdkJs.init('https://bot.4paradigm.com/web/chat/15516/bbc69136-e42c-4299-ba85-c57685c8417d')

// </script>
],
markdown: {
toc: { includeLevel: [2, 3] },
Expand Down
21 changes: 21 additions & 0 deletions support/known-issue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
vssueId: 188
description: 本文描述了 Kuboard 的一些已知问题
---

# 已知问题

## SSE4.2 compatible

Kuboard 自 v1.0.7 开始,使用 [OpenResty](https://hub.docker.com/r/openresty/openresty) 提供的基础镜像,该镜像存在的一个问题是:CPU 必须兼容 SSE4.2。这意味着,一部分 2007 年以前的 CPU 可能无法兼容。请参考 [https://github.com/openresty/docker-openresty/issues/39](https://github.com/openresty/docker-openresty/issues/39)

出现此问题时,通过 kubectl 命令查看 Kuboard 日志
``` sh
kubectl logs -f -l k8s.eip.work/name=kuboard -n kube-system
```


错误提示如下所示:
```
Illegal instruction (core dumped) nginx -g "daemon off;"
```

0 comments on commit c3d30a2

Please sign in to comment.