update at 2023-10-14 14:47:32

pull/153/head
roc 2023-10-14 14:47:32 +08:00
parent 39c162b9d5
commit d7f31ff4d4
2 changed files with 18 additions and 2 deletions

View File

@ -1,7 +1,5 @@
# 为 Pod 设置内核参数
import FileBlock from '@site/src/components/FileBlock';
本文介绍为 Pod 设置内核参数的几种方式。
## 在 securityContext 中指定 sysctl

View File

@ -0,0 +1,18 @@
import React from 'react';
// Import the original mapper
import MDXComponents from '@theme-original/MDXComponents';
import FileBlock from '@site/src/components/FileBlock';
import CodeBlock from '@theme-original/CodeBlock';
import Tabs from '@theme-original/Tabs';
import TabItem from '@theme-original/TabItem';
export default {
// Re-use the default mapping
...MDXComponents,
// Add more components to be imported by default
FileBlock,
CodeBlock,
Tabs,
TabItem,
};