update at 2023-10-14 14:47:32
parent
39c162b9d5
commit
d7f31ff4d4
|
@ -1,7 +1,5 @@
|
||||||
# 为 Pod 设置内核参数
|
# 为 Pod 设置内核参数
|
||||||
|
|
||||||
import FileBlock from '@site/src/components/FileBlock';
|
|
||||||
|
|
||||||
本文介绍为 Pod 设置内核参数的几种方式。
|
本文介绍为 Pod 设置内核参数的几种方式。
|
||||||
|
|
||||||
## 在 securityContext 中指定 sysctl
|
## 在 securityContext 中指定 sysctl
|
||||||
|
|
|
@ -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,
|
||||||
|
};
|
Loading…
Reference in New Issue