Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 89 of 89 for volumeID (0.12 sec)

  1. pilot/pkg/config/kube/gateway/testdata/deployment/waypoint.yaml

              name: istio-token
            - mountPath: /etc/istio/pod
              name: istio-podinfo
          serviceAccountName: namespace
          terminationGracePeriodSeconds: 2
          volumes:
          - emptyDir: {}
            name: workload-socket
          - emptyDir:
              medium: Memory
            name: istio-envoy
          - emptyDir:
              medium: Memory
            name: go-proxy-envoy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/config/v1alpha1/defaults.go

    	}
    	if obj.EnableDynamicProvisioning == nil {
    		obj.EnableDynamicProvisioning = pointer.Bool(true)
    	}
    	if obj.FlexVolumePluginDir == "" {
    		obj.FlexVolumePluginDir = "/usr/libexec/kubernetes/kubelet-plugins/volume/exec/"
    	}
    	// Use the default PersistentVolumeRecyclerConfiguration options.
    	RecommendedDefaultPersistentVolumeRecyclerConfiguration(&obj.PersistentVolumeRecyclerConfiguration)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. security/pkg/util/jwtutil_test.go

    // limitations under the License.
    
    package util
    
    import (
    	"fmt"
    	"reflect"
    	"testing"
    	"time"
    )
    
    var (
    	// thirdPartyJwt is generated in a testing K8s cluster, using the "istio-token" projected volume.
    	// Token is issued at 2020-04-04 22:13:54 Pacific Daylight time.
    	// Expiration time is 2020-04-05 10:13:54 Pacific Daylight time.
    	thirdPartyJwt = "eyJhbGciOiJSUzI1NiIsImtpZCI6IiJ9." +
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:11 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. cluster/addons/dns/kube-dns/kube-dns.yaml.base

                        operator: In
                        values: ["kube-dns"]
                  topologyKey: kubernetes.io/hostname
          tolerations:
          - key: "CriticalAddonsOnly"
            operator: "Exists"
          volumes:
          - name: kube-dns-config
            configMap:
              name: kube-dns
              optional: true
          nodeSelector:
            kubernetes.io/os: linux
          containers:
          - name: kubedns
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. cluster/addons/dns/kube-dns/kube-dns.yaml.in

                        operator: In
                        values: ["kube-dns"]
                  topologyKey: kubernetes.io/hostname
          tolerations:
          - key: "CriticalAddonsOnly"
            operator: "Exists"
          volumes:
          - name: kube-dns-config
            configMap:
              name: kube-dns
              optional: true
          nodeSelector:
            kubernetes.io/os: linux
          containers:
          - name: kubedns
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/files/gateway-injection-template.yaml

        - mountPath: /etc/certs/
          name: istio-certs
          readOnly: true
        {{- end }}
        - name: istio-podinfo
          mountPath: /etc/istio/pod
      volumes:
      - emptyDir: {}
        name: workload-socket
      - emptyDir: {}
        name: credential-socket
      {{- if eq .Values.global.caName "GkeWorkloadCertificate" }}
      - name: gke-workload-certificate
        csi:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/files/gateway-injection-template.yaml

        - mountPath: /etc/certs/
          name: istio-certs
          readOnly: true
        {{- end }}
        - name: istio-podinfo
          mountPath: /etc/istio/pod
      volumes:
      - emptyDir: {}
        name: workload-socket
      - emptyDir: {}
        name: credential-socket
      {{- if eq .Values.global.caName "GkeWorkloadCertificate" }}
      - name: gke-workload-certificate
        csi:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. cmd/data-scanner_test.go

    	uuids := make([]uuid.UUID, 5)
    	for i := range uuids {
    		uuids[i] = uuid.UUID([16]byte{15: uint8(i + 1)})
    	}
    	fivs := make([]FileInfo, 5)
    	for i := 0; i < 5; i++ {
    		fivs[i] = FileInfo{
    			Volume:      bucket,
    			Name:        obj,
    			VersionID:   uuids[i].String(),
    			IsLatest:    i == 0,
    			ModTime:     modTime.Add(-1 * time.Duration(i) * time.Minute),
    			Size:        1 << 10,
    			NumVersions: 5,
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 03 11:18:58 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. src/internal/cpu/cpu_x86.go

    	// The FMA instruction set extension only has VEX prefixed instructions.
    	// VEX prefixed instructions require OSXSAVE to be enabled.
    	// See Intel 64 and IA-32 Architecture Software Developer’s Manual Volume 2
    	// Section 2.4 "AVX and SSE Instruction Exception Specification"
    	X86.HasFMA = isSet(ecx1, cpuid_FMA) && X86.HasOSXSAVE
    
    	osSupportsAVX := false
    	osSupportsAVX512 := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 13:40:20 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top