Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for HostToContainer (0.29 sec)

  1. manifests/charts/istio-cni/templates/daemonset.yaml

                - mountPath: /var/run/istio-cni
                  name: cni-socket-dir
                {{- if .Values.cni.ambient.enabled }}
                - mountPath: /host/var/run/netns
                  mountPropagation: HostToContainer
                  name: cni-netns-dir
                - mountPath: /var/run/ztunnel
                  name: cni-ztunnel-sock-dir
                {{ end }}
              resources:
    {{- if .Values.cni.resources }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.11.md

    * Default mount propagation has changed from `HostToContainer` ("rslave" in Linux terminology), as it was in 1.10, to `None` ("private") to match the behavior in 1.9 and earlier releases; `HostToContainer` as a default caused regressions in some pods. If you are relying on this behavior you will need to set it explicitly. ([#62462](https://github.com/kubernetes/kubernetes/pull/62462),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation_test.go

    		nonPrivilegedContainer,
    		false,
    	}, {
    		// explicitly non-privileged container + HostToContainer
    		core.VolumeMount{Name: "foo", MountPath: "/foo", MountPropagation: &propagationHostToContainer},
    		nonPrivilegedContainer,
    		false,
    	}, {
    		// explicitly non-privileged container + HostToContainer
    		core.VolumeMount{Name: "foo", MountPath: "/foo", MountPropagation: &propagationBidirectional},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.10.md

    * Default mount propagation has changed from "HostToContainer" ("rslave" in Linux terminology) to "None" ("private") to match the behavior in 1.9 and earlier releases. "HostToContainer" as a default caused regressions in some pods. ([#62462](https://github.com/kubernetes/kubernetes/pull/62462), [@jsafrane](https://github.com/jsafrane))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    	// containers.
    	// Note that this mode is recursively applied to all mounts in the volume
    	// ("rslave" in Linux terminology).
    	MountPropagationHostToContainer MountPropagationMode = "HostToContainer"
    	// MountPropagationBidirectional means that the volume in a container will
    	// receive new mounts from the host or other containers, and its own mounts
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// containers.
    	// Note that this mode is recursively applied to all mounts in the volume
    	// ("rslave" in Linux terminology).
    	MountPropagationHostToContainer MountPropagationMode = "HostToContainer"
    	// MountPropagationBidirectional means that the volume in a container will
    	// receive new mounts from the host or other containers, and its own mounts
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    mountPath: /host/etc/cni/net.d name: cni-net-dir - mountPath: /var/run/istio-cni name: cni-log-dir {{- if .Values.cni.ambient.enabled }} - mountPath: /etc/ambient-config name: cni-ambient-config-dir - mountPath: /var/run/netns mountPropagation: HostToContainer name: cni-netns-dir {{- if eq .Values.cni.ambient.redirectMode "ebpf"}} - mountPath: /sys/fs/bpf mountPropagation: Bidirectional name: cni-bpffs-dir {{- end }} {{ end }} resources: {{- if .Values.cni.resources }} {{ toYaml .Values.cni.resources...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  8. pkg/generated/openapi/zz_generated.openapi.go

    mounts from the host or other containers, and its own mounts will be propagated from the container to the host or other containers. Note that this mode is recursively applied to all mounts in the volume (\"rshared\" in Linux terminology).\n - `\"HostToContainer\"` means that the volume in a container will receive new mounts from the host or other containers, but filesystems mounted inside the container won't be propagated to the host or other containers. Note that this mode is recursively applied to...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top