Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 117 for unmounted (0.98 sec)

  1. cmd/kubeadm/app/apis/kubeadm/types.go

    }
    
    // HostPathMount contains elements describing volumes that are mounted from the
    // host.
    type HostPathMount struct {
    	// Name of the volume inside the pod template.
    	Name string
    	// HostPath is the path in the host that will be mounted inside
    	// the pod.
    	HostPath string
    	// MountPath is the path inside the pod where hostPath will be mounted.
    	MountPath string
    	// ReadOnly controls write access to the volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/controlplane/volumes.go

    	flexvolumeDirVolumeName        = "flexvolume-dir"
    	defaultFlexvolumeDirVolumePath = "/usr/libexec/kubernetes/kubelet-plugins/volume/exec"
    )
    
    // caCertsExtraVolumePaths specifies the paths that can be conditionally mounted into the apiserver and controller-manager containers
    // as /etc/ssl/certs might be or contain a symlink to them. It's a variable since it may be changed in unit testing. This var MUST
    // NOT be changed in normal codepaths during runtime.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. manifests/charts/gateways/istio-egress/templates/deployment.yaml

    {{- end }}
              - name: istio-token
                mountPath: /var/run/secrets/tokens
                readOnly: true
              {{- if .Values.global.mountMtlsCerts }}
              # Use the key and cert mounted to /etc/certs/ for the in-cluster mTLS communications.
              - name: istio-certs
                mountPath: /etc/certs
                readOnly: true
              {{- end }}
              - mountPath: /var/lib/istio/data
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. pkg/istio-agent/xds_proxy.go

    type ProxyConnection struct {
    	conID              uint32
    	upstreamError      chan error
    	downstreamError    chan error
    	requestsChan       *channels.Unbounded[*discovery.DiscoveryRequest]
    	responsesChan      chan *discovery.DiscoveryResponse
    	deltaRequestsChan  *channels.Unbounded[*discovery.DeltaDiscoveryRequest]
    	deltaResponsesChan chan *discovery.DeltaDiscoveryResponse
    	stopChan           chan struct{}
    	downstream         adsStream
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    // HostPathMount contains elements describing volumes that are mounted from the
    // host.
    type HostPathMount struct {
    	// Name of the volume inside the pod template.
    	Name string `json:"name"`
    	// HostPath is the path in the host that will be mounted inside
    	// the pod.
    	HostPath string `json:"hostPath"`
    	// MountPath is the path inside the pod where hostPath will be mounted.
    	MountPath string `json:"mountPath"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

    {{- end }}
              - name: istio-token
                mountPath: /var/run/secrets/tokens
                readOnly: true
              {{- if .Values.global.mountMtlsCerts }}
              # Use the key and cert mounted to /etc/certs/ for the in-cluster mTLS communications.
              - name: istio-certs
                mountPath: /etc/certs
                readOnly: true
              {{- end }}
              - mountPath: /var/lib/istio/data
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. pkg/volume/util/util.go

    // actual backing device, directory, path, etc. for a particular volume.
    // The returned name can be used to uniquely reference the volume, for example,
    // to prevent operations (attach/detach or mount/unmount) from being triggered
    // on the same volume.
    func GetUniqueVolumeName(pluginName, volumeName string) v1.UniqueVolumeName {
    	return v1.UniqueVolumeName(fmt.Sprintf("%s/%s", pluginName, volumeName))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    // HostPathMount contains elements describing volumes that are mounted from the
    // host.
    type HostPathMount struct {
    	// Name of the volume inside the pod template.
    	Name string `json:"name"`
    	// HostPath is the path in the host that will be mounted inside
    	// the pod.
    	HostPath string `json:"hostPath"`
    	// MountPath is the path inside the pod where hostPath will be mounted.
    	MountPath string `json:"mountPath"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/cache/actual_state_of_world.go

    	// SetVolumesMountedByNode sets all the volumes mounted by the given node.
    	// These volumes should include attached volumes, not-yet-attached volumes,
    	// and may also include non-attachable volumes.
    	// When present in the volumeNames parameter, the volume
    	// is mounted by the given node, indicating it may not be safe to detach.
    	// Otherwise, the volume is not mounted by the given node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  10. pkg/volume/hostpath/host_path.go

    		hu:            kvh.GetHostUtil(),
    		noTypeChecker: plugin.noTypeChecker,
    	}, nil
    }
    
    func (plugin *hostPathPlugin) NewUnmounter(volName string, podUID types.UID) (volume.Unmounter, error) {
    	return &hostPathUnmounter{&hostPath{
    		path: "",
    	}}, nil
    }
    
    // Recycle recycles/scrubs clean a HostPath volume.
    // Recycle blocks until the pod has completed or any error occurs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top