From 049fc5a427620db7f880adb2fd5c251da8cf8509 Mon Sep 17 00:00:00 2001 From: Akond Rahman Date: Mon, 1 Nov 2021 17:09:19 -0500 Subject: [PATCH 1/3] Update pod-with-host-network.yaml --- 01.kubernetes-in-action/Chapter13/pod-with-host-network.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.kubernetes-in-action/Chapter13/pod-with-host-network.yaml b/01.kubernetes-in-action/Chapter13/pod-with-host-network.yaml index c163446..f2af5d6 100644 --- a/01.kubernetes-in-action/Chapter13/pod-with-host-network.yaml +++ b/01.kubernetes-in-action/Chapter13/pod-with-host-network.yaml @@ -3,7 +3,7 @@ kind: Pod metadata: name: pod-with-host-network spec: - hostNetwork: true + hostNetwork: false containers: - name: main image: alpine From 396612874777fc35a81318df07950796937dc833 Mon Sep 17 00:00:00 2001 From: Akond Rahman Date: Mon, 1 Nov 2021 17:40:00 -0500 Subject: [PATCH 2/3] Update pod-with-host-pid-and-ipc.yaml --- .../Chapter13/pod-with-host-pid-and-ipc.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.kubernetes-in-action/Chapter13/pod-with-host-pid-and-ipc.yaml b/01.kubernetes-in-action/Chapter13/pod-with-host-pid-and-ipc.yaml index 3ba3d91..762442b 100644 --- a/01.kubernetes-in-action/Chapter13/pod-with-host-pid-and-ipc.yaml +++ b/01.kubernetes-in-action/Chapter13/pod-with-host-pid-and-ipc.yaml @@ -3,7 +3,7 @@ kind: Pod metadata: name: pod-with-host-pid-and-ipc spec: - hostPID: true + hostPID: false hostIPC: true containers: - name: main From 09dd7bf80a04346c1f6d6f87ac3844789bcbc614 Mon Sep 17 00:00:00 2001 From: Akond Rahman Date: Tue, 2 Nov 2021 13:26:54 -0500 Subject: [PATCH 3/3] Update pod-privileged.yaml --- 01.kubernetes-in-action/Chapter13/pod-privileged.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.kubernetes-in-action/Chapter13/pod-privileged.yaml b/01.kubernetes-in-action/Chapter13/pod-privileged.yaml index f3338a1..8e8812b 100644 --- a/01.kubernetes-in-action/Chapter13/pod-privileged.yaml +++ b/01.kubernetes-in-action/Chapter13/pod-privileged.yaml @@ -8,4 +8,4 @@ spec: image: alpine command: ["/bin/sleep", "999999"] securityContext: - privileged: true + privileged: false