File tree Expand file tree Collapse file tree 1 file changed +0
-16
lines changed
content/ja/docs/setup/production-environment/tools/kubeadm Expand file tree Collapse file tree 1 file changed +0
-16
lines changed Original file line number Diff line number Diff line change 48
48
49
49
複数のネットワークアダプターがあり、Kubernetesコンポーネントにデフォルトで到達できない場合、IPルートを追加して、Kubernetesクラスターのアドレスが適切なアダプターを経由するように設定することをお勧めします。
50
50
51
- ## iptablesがブリッジを通過するトラフィックを処理できるようにする
52
-
53
- Linuxノードのiptablesがブリッジを通過するトラフィックを正確に処理する要件として、` net.bridge.bridge-nf-call-iptables ` を` sysctl ` の設定ファイルで1に設定してください。例えば以下のようにします。
54
-
55
- ``` bash
56
- cat << EOF > /etc/sysctl.d/k8s.conf
57
- net.bridge.bridge-nf-call-ip6tables = 1
58
- net.bridge.bridge-nf-call-iptables = 1
59
- EOF
60
- sysctl --system
61
- ```
62
-
63
- この手順の前に` br_netfilter ` モジュールがロードされていることを確認してください。` lsmod | grep br_netfilter ` を実行することで確認できます。明示的にロードするには` modprobe br_netfilter ` を実行してください。
64
-
65
- 詳細は[ ネットワークプラグインの要件] ( https://kubernetes.io/docs/concepts/extend-kubernetes/compute-storage-net/network-plugins/#network-plugin-requirements ) を参照してください。
66
-
67
51
## 必須ポートの確認
68
52
69
53
### コントロールプレーンノード
You can’t perform that action at this time.
0 commit comments