Shared host IPC namespace 이 페이지는 아직 한국어로 제공되지 않습니다. 번역 작업 중입니다.
현재 번역 프로젝트에 대한 질문이나 피드백이 있으신 경우
언제든지 연락주시기 바랍니다. Id: terraform-kubernetes-shared-host-ipc-namespace
Provider: Kubernetes
Platform: Terraform
Severity: Medium
Category: Resource Management
Learn More Description Containers must not share the host IPC namespace.
This rule detects resources where the host_ipc attribute is set to true; the attribute should be undefined or false to prevent sharing the host IPC namespace.
The rule’s result includes documentId, resourceType, resourceName, searchKey, issueType, keyExpectedValue, keyActualValue, searchLine, remediation, and remediationType to help locate and remediate the issue; remediation replaces true with false.
Compliant Code Examples resource "kubernetes_pod" "negative1" {
metadata {
name = "terraform-example"
}
spec {
host_ipc = false
container {
image = "nginx:1.7.9"
name = "example"
env {
name = "environment"
value = "test"
}
port {
container_port = 8080
}
liveness_probe {
http_get {
path = "/nginx_status"
port = 80
http_header {
name = "X-Custom-Header"
value = "Awesome"
}
}
initial_delay_seconds = 3
period_seconds = 3
}
}
dns_config {
nameservers = [ "1.1.1.1" , "8.8.8.8" , "9.9.9.9" ]
searches = [ "example.com" ]
option {
name = "ndots"
value = 1
}
option {
name = "use-vc"
}
}
dns_policy = "None"
}
}
Non-Compliant Code Examples resource "kubernetes_pod" "positive1" {
metadata {
name = "terraform-example"
}
spec {
host_ipc = true
container {
image = "nginx:1.7.9"
name = "example"
env {
name = "environment"
value = "test"
}
port {
container_port = 8080
}
liveness_probe {
http_get {
path = "/nginx_status"
port = 80
http_header {
name = "X-Custom-Header"
value = "Awesome"
}
}
initial_delay_seconds = 3
period_seconds = 3
}
}
dns_config {
nameservers = [ "1.1.1.1" , "8.8.8.8" , "9.9.9.9" ]
searches = [ "example.com" ]
option {
name = "ndots"
value = 1
}
option {
name = "use-vc"
}
}
dns_policy = "None"
}
}