Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for VolumeMounts (0.14 sec)

  1. pkg/kubelet/kubelet_pods.go

    			// ContainerStatus.ImageID is historically intentional and should
    			// not change.
    			ImageID:     cs.ImageRef,
    			ContainerID: cid,
    		}
    		if oldStatus != nil {
    			status.VolumeMounts = oldStatus.VolumeMounts // immutable
    		}
    		switch {
    		case cs.State == kubecontainer.ContainerStateRunning:
    			status.State.Running = &v1.ContainerStateRunning{StartedAt: metav1.NewTime(cs.StartedAt)}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. pkg/apis/core/zz_generated.deepcopy.go

    		copy(*out, *in)
    	}
    	if in.RestartPolicy != nil {
    		in, out := &in.RestartPolicy, &out.RestartPolicy
    		*out = new(ContainerRestartPolicy)
    		**out = **in
    	}
    	if in.VolumeMounts != nil {
    		in, out := &in.VolumeMounts, &out.VolumeMounts
    		*out = make([]VolumeMount, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.VolumeDevices != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		copy(*out, *in)
    	}
    	if in.RestartPolicy != nil {
    		in, out := &in.RestartPolicy, &out.RestartPolicy
    		*out = new(ContainerRestartPolicy)
    		**out = **in
    	}
    	if in.VolumeMounts != nil {
    		in, out := &in.VolumeMounts, &out.VolumeMounts
    		*out = make([]VolumeMount, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.VolumeDevices != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

        command:
        - /bin/sh
        args:
        - -c
        - test -e /scrub && find /scrub -mindepth 1 -delete && test -z $(ls -A /scrub) || exit 1
        volumeMounts:
        - name: vol
          mountPath: /scrub
    EOF
    
    # fixup the alternate registry if specified
    if [[ -n "${KUBE_ADDON_REGISTRY:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. samples/addons/grafana.yaml

                allowPrivilegeEscalation: false
                capabilities:
                  drop:
                  - ALL
                seccompProfile:
                  type: RuntimeDefault
              volumeMounts:
                - name: config
                  mountPath: "/etc/grafana/grafana.ini"
                  subPath: grafana.ini
                - name: storage
                  mountPath: "/var/lib/grafana"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
Back to top