Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for emptyDir2 (0.22 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                  volumes:
                  - emptyDir: {}
                    name: workload-socket
                  - emptyDir:
                      medium: Memory
                    name: istio-envoy
                  - emptyDir:
                      medium: Memory
                    name: go-proxy-envoy
                  - emptyDir: {}
                    name: istio-data
                  - emptyDir: {}
                    name: go-proxy-data
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/helpers_test.go

    	}, []v1.Volume{
    		newVolume("local-volume", v1.VolumeSource{
    			EmptyDir: &v1.EmptyDirVolumeSource{},
    		}),
    	})
    	pod2 := newPod("best-effort-low", defaultPriority, []v1.Container{
    		newContainer("best-effort-low", newResourceList("", "", ""), newResourceList("", "", "")),
    	}, []v1.Volume{
    		newVolume("local-volume", v1.VolumeSource{
    			EmptyDir: &v1.EmptyDirVolumeSource{},
    		}),
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "string"
            },
            "sizeLimit": {
              "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    istio-podinfo mountPath: /etc/istio/pod volumes: - emptyDir: {} name: workload-socket - emptyDir: {} name: credential-socket {{- if eq .Values.global.caName "GkeWorkloadCertifica" }} - name: gke-workload-certificate csi: driver: workloadcertificates.security.cloud.google.com {{- else}} - emptyDir: {} name: workload-certs {{- end }} # SDS channel between istioagent and Envoy - emptyDir: medium: Memory name: istio-envoy - name: istio-data emptyDir: {} - name: istio-podinfo downwardAPI: items: - path:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/eviction_manager_test.go

    func makePodWithLocalStorageCapacityIsolationOpen(name string, priority int32, requests v1.ResourceList, limits v1.ResourceList, memoryWorkingSet string) (*v1.Pod, statsapi.PodStats) {
    	vol := newVolume("local-volume", v1.VolumeSource{
    		EmptyDir: &v1.EmptyDirVolumeSource{
    			SizeLimit: resource.NewQuantity(requests.Memory().Value(), resource.BinarySI),
    		},
    	})
    	var vols []v1.Volume
    	vols = append(vols, vol)
    	pod := newPod(name, priority, []v1.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. pkg/apis/core/zz_generated.deepcopy.go

    	*out = *in
    	if in.HostPath != nil {
    		in, out := &in.HostPath, &out.HostPath
    		*out = new(HostPathVolumeSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.EmptyDir != nil {
    		in, out := &in.EmptyDir, &out.EmptyDir
    		*out = new(EmptyDirVolumeSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.GCEPersistentDisk != nil {
    		in, out := &in.GCEPersistentDisk, &out.GCEPersistentDisk
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	*out = *in
    	if in.HostPath != nil {
    		in, out := &in.HostPath, &out.HostPath
    		*out = new(HostPathVolumeSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.EmptyDir != nil {
    		in, out := &in.EmptyDir, &out.EmptyDir
    		*out = new(EmptyDirVolumeSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.GCEPersistentDisk != nil {
    		in, out := &in.GCEPersistentDisk, &out.GCEPersistentDisk
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  8. samples/addons/grafana.yaml

              configMap:
                name: istio-grafana-dashboards
            - name: dashboards-istio-services
              configMap:
                name: istio-services-grafana-dashboards
            - name: storage
              emptyDir: {}
    
    ---
    
    apiVersion: v1
    data:
      istio-performance-dashboard.json: |
    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