Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 146 for VolumeMounts (0.14 sec)

  1. pkg/volume/util/nested_volumes_test.go

    			volname:  "vol1",
    			pod: v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Namespace: testNamespace,
    					UID:       testPodUID,
    				},
    				Spec: v1.PodSpec{
    					Containers: []v1.Container{
    						{
    							VolumeMounts: []v1.VolumeMount{
    								{MountPath: "/dir", Name: "vol1"},
    							},
    						},
    					},
    				},
    			},
    		},
    		{
    			name:     "Simple Nested Pod",
    			err:      false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/core/v1/containerstatus.go

    	AllocatedResources   *corev1.ResourceList                    `json:"allocatedResources,omitempty"`
    	Resources            *ResourceRequirementsApplyConfiguration `json:"resources,omitempty"`
    	VolumeMounts         []VolumeMountStatusApplyConfiguration   `json:"volumeMounts,omitempty"`
    	User                 *ContainerUserApplyConfiguration        `json:"user,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. samples/bookinfo/platform/kube/bookinfo-psa.yaml

            imagePullPolicy: IfNotPresent
            env:
            - name: LOG_DIR
              value: "/tmp/logs"
            ports:
            - containerPort: 9080
            volumeMounts:
            - name: tmp
              mountPath: /tmp
            - name: wlp-output
              mountPath: /opt/ibm/wlp/output
            securityContext:
              allowPrivilegeEscalation: false
              capabilities:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. samples/bookinfo/platform/kube/bookinfo.yaml

            imagePullPolicy: IfNotPresent
            env:
            - name: LOG_DIR
              value: "/tmp/logs"
            ports:
            - containerPort: 9080
            volumeMounts:
            - name: tmp
              mountPath: /tmp
            - name: wlp-output
              mountPath: /opt/ibm/wlp/output
          volumes:
          - name: wlp-output
            emptyDir: {}
          - name: tmp
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  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. samples/bookinfo/platform/kube/bookinfo-dualstack.yaml

            imagePullPolicy: IfNotPresent
            env:
            - name: LOG_DIR
              value: "/tmp/logs"
            ports:
            - containerPort: 9080
            volumeMounts:
            - name: tmp
              mountPath: /tmp
            - name: wlp-output
              mountPath: /opt/ibm/wlp/output
          volumes:
          - name: wlp-output
            emptyDir: {}
          - name: tmp
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. cluster/addons/metrics-server/metrics-server-deployment.yaml

            livenessProbe:
              httpGet:
                path: /livez
                port: https
                scheme: HTTPS
              periodSeconds: 10
              failureThreshold: 3
            volumeMounts:
            - mountPath: /tmp
              name: tmp-dir
          - name: metrics-server-nanny
            image: registry.k8s.io/autoscaling/addon-resizer:1.8.14
            resources:
              limits:
                cpu: 100m
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:50:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top