Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 197 for VolumeMounts (0.15 sec)

  1. plugin/pkg/admission/security/podsecurity/testdata/pod_restricted.yaml

          runAsNonRoot: true
          capabilities:
            add:
            - NET_BIND_SERVICE
            drop:
            - ALL
        terminationMessagePath: /dev/termination-log
        terminationMessagePolicy: File
        volumeMounts:
        - mountPath: /kube-dns-config
          name: kube-dns-config
        - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
          name: kube-api-access-s8rz5
          readOnly: true
      - args:
        - -v=2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 04 16:26:30 UTC 2021
    - 18.3K bytes
    - Viewed (0)
  2. plugin/pkg/admission/serviceaccount/admission.go

    		for _, volumeMount := range container.VolumeMounts {
    			// Existing mounts at the default mount path prevent mounting of the API token
    			if volumeMount.MountPath == DefaultAPITokenMountPath {
    				existingContainerMount = true
    				break
    			}
    		}
    		if !existingContainerMount {
    			pod.Spec.InitContainers[i].VolumeMounts = append(pod.Spec.InitContainers[i].VolumeMounts, volumeMount)
    			needsTokenVolume = true
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 17:49:30 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Pod.yaml

        terminationMessagePath: terminationMessagePathValue
        terminationMessagePolicy: terminationMessagePolicyValue
        tty: true
        volumeDevices:
        - devicePath: devicePathValue
          name: nameValue
        volumeMounts:
        - mountPath: mountPathValue
          mountPropagation: mountPropagationValue
          name: nameValue
          readOnly: true
          recursiveReadOnly: recursiveReadOnlyValue
          subPath: subPathValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. plugin/pkg/admission/security/podsecurity/testdata/pod_baseline.yaml

          runAsGroup: 1001
          capabilities:
            add:
            - NET_BIND_SERVICE
            drop:
            - ALL
        terminationMessagePath: /dev/termination-log
        terminationMessagePolicy: File
        volumeMounts:
        - mountPath: /kube-dns-config
          name: kube-dns-config
        - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
          name: kube-api-access-s8rz5
          readOnly: true
      - args:
        - -v=2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 04 16:26:30 UTC 2021
    - 18.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.yaml

        terminationMessagePath: terminationMessagePathValue
        terminationMessagePolicy: terminationMessagePolicyValue
        tty: true
        volumeDevices:
        - devicePath: devicePathValue
          name: nameValue
        volumeMounts:
        - mountPath: mountPathValue
          mountPropagation: mountPropagationValue
          name: nameValue
          readOnly: true
          recursiveReadOnly: recursiveReadOnlyValue
          subPath: subPathValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/controlplane/volumes_test.go

    			delete(mounts.volumeMounts[kubeadmconstants.KubeControllerManager], flexvolumeDirVolumeName)
    			if !reflect.DeepEqual(mounts.volumes, rt.vol) {
    				t.Errorf(
    					"failed getHostPathVolumesForTheControlPlane:\n\texpected: %v\n\t  actual: %v",
    					rt.vol,
    					mounts.volumes,
    				)
    			}
    			if !reflect.DeepEqual(mounts.volumeMounts, rt.volMount) {
    				t.Errorf(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/core/v1/ephemeralcontainer.go

    	b.RestartPolicy = &value
    	return b
    }
    
    // WithVolumeMounts adds the given value to the VolumeMounts field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    // If called multiple times, values provided by each call will be appended to the VolumeMounts field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  8. pkg/api/pod/util.go

    		for i := range podSpec.Containers {
    			for j := range podSpec.Containers[i].VolumeMounts {
    				podSpec.Containers[i].VolumeMounts[j].RecursiveReadOnly = nil
    			}
    		}
    		for i := range podSpec.InitContainers {
    			for j := range podSpec.InitContainers[i].VolumeMounts {
    				podSpec.InitContainers[i].VolumeMounts[j].RecursiveReadOnly = nil
    			}
    		}
    		for i := range podSpec.EphemeralContainers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/list.yaml.injected

              startupProbe:
                failureThreshold: 600
                httpGet:
                  path: /healthz/ready
                  port: 15021
                periodSeconds: 1
                timeoutSeconds: 3
              volumeMounts:
              - mountPath: /var/run/secrets/workload-spiffe-uds
                name: workload-socket
              - mountPath: /var/run/secrets/credential-uds
                name: credential-socket
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/controlplane/manifests.go

    			Image:           images.GetKubernetesImage(kubeadmconstants.KubeAPIServer, cfg),
    			ImagePullPolicy: v1.PullIfNotPresent,
    			Command:         getAPIServerCommand(cfg, endpoint),
    			VolumeMounts:    staticpodutil.VolumeMountMapToSlice(mounts.GetVolumeMounts(kubeadmconstants.KubeAPIServer)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top