Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 525 for VolumeMounts (0.22 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.json

              "requests": {
                "requestsKey": "0"
              },
              "claims": [
                {
                  "name": "nameValue"
                }
              ]
            },
            "volumeMounts": [
              {
                "name": "nameValue",
                "mountPath": "mountPathValue",
                "readOnly": true,
                "recursiveReadOnly": "recursiveReadOnlyValue"
              }
            ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.yaml

          waiting:
            message: messageValue
            reason: reasonValue
        user:
          linux:
            gid: 2
            supplementalGroups:
            - 3
            uid: 1
        volumeMounts:
        - mountPath: mountPathValue
          name: nameValue
          readOnly: true
          recursiveReadOnly: recursiveReadOnlyValue
      ephemeralContainerStatuses:
      - allocatedResources:
          allocatedResourcesKey: "0"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/files/grpc-simple.yaml

    metadata:
      annotations:
        sidecar.istio.io/rewriteAppHTTPProbers: "false"
    spec:
      initContainers:
        - name: grpc-bootstrap-init
          image: busybox:1.28
          volumeMounts:
            - mountPath: /var/lib/grpc/data/
              name: grpc-io-proxyless-bootstrap
          env:
            - name: INSTANCE_IP
              valueFrom:
                fieldRef:
                  fieldPath: status.podIP
            - name: POD_NAME
              valueFrom:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 10 20:56:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. tests/integration/security/file_mounted_certs/main_test.go

                      defaultMode: 420
                - path: spec.template.spec.containers[0].volumeMounts[100]
                  value: |-
                    name: server-certs
                    mountPath: /server-certs
                - path: spec.template.spec.containers[0].volumeMounts[101]
                  value: |-
                    name: client-certs
                    mountPath: /client-certs
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. pkg/kubelet/container/helpers_test.go

    	}{
    		{
    			name: "subpath with no expansion",
    			container: &v1.Container{
    				VolumeMounts: []v1.VolumeMount{{SubPathExpr: "foo"}},
    			},
    			expectedSubPath:   "foo",
    			expectedMountPath: "",
    			expectedOk:        true,
    		},
    		{
    			name: "volumes with expanded subpath",
    			container: &v1.Container{
    				VolumeMounts: []v1.VolumeMount{{SubPathExpr: "foo/$(POD_NAME)"}},
    			},
    			envs: []EnvVar{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 01:55:46 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods_linux_test.go

    				"disk5": kubecontainer.VolumeInfo{Mounter: &stubVolume{path: "/var/lib/kubelet/podID/volumes/empty/disk5"}},
    			},
    			container: v1.Container{
    				Name: "container1",
    				VolumeMounts: []v1.VolumeMount{
    					{
    						MountPath:        "/etc/hosts",
    						Name:             "disk",
    						ReadOnly:         false,
    						MountPropagation: &propagationHostToContainer,
    					},
    					{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 18:00:59 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PodStatusResult.json

              "requests": {
                "requestsKey": "0"
              },
              "claims": [
                {
                  "name": "nameValue"
                }
              ]
            },
            "volumeMounts": [
              {
                "name": "nameValue",
                "mountPath": "mountPathValue",
                "readOnly": true,
                "recursiveReadOnly": "recursiveReadOnlyValue"
              }
            ]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PodStatusResult.yaml

            message: messageValue
            reason: reasonValue
            signal: 2
            startedAt: "2005-01-01T01:01:01Z"
          waiting:
            message: messageValue
            reason: reasonValue
        volumeMounts:
        - mountPath: mountPathValue
          name: nameValue
          readOnly: true
          recursiveReadOnly: recursiveReadOnlyValue
      ephemeralContainerStatuses:
      - allocatedResources:
          allocatedResourcesKey: "0"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/grpc-simple.yaml.injected

              value: info
            image: fake.docker.io/google-samples/traffic-go-gke:1.0
            name: traffic
            readinessProbe:
              httpGet:
                port: 80
            resources: {}
            volumeMounts:
            - mountPath: /var/lib/grpc/data/
              name: grpc-io-proxyless-bootstrap
          initContainers:
          - command:
            - sh
            - -c
            - |-
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 10 20:56:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_volumes_test.go

    	defer testKubelet.Cleanup()
    	kubelet := testKubelet.kubelet
    
    	pod := podWithUIDNameNsSpec("12345678", "foo", "test", v1.PodSpec{
    		Containers: []v1.Container{
    			{
    				Name: "container1",
    				VolumeMounts: []v1.VolumeMount{
    					{
    						Name:      "vol1",
    						MountPath: "/mnt/vol1",
    					},
    					{
    						Name:      "vol2",
    						MountPath: "/mnt/vol2",
    					},
    				},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 17 16:53:28 UTC 2023
    - 20.4K bytes
    - Viewed (0)
Back to top