Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 414 for volumeID (0.11 sec)

  1. cluster/addons/dns/coredns/coredns.yaml.in

              capabilities:
                add:
                - NET_BIND_SERVICE
                drop:
                - ALL
              readOnlyRootFilesystem: true
          dnsPolicy: Default
          volumes:
            - name: config-volume
              configMap:
                name: coredns
                items:
                - key: Corefile
                  path: Corefile
    ---
    apiVersion: v1
    kind: Service
    metadata:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 23:50:49 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. cluster/addons/dns/nodelocaldns/nodelocaldns.yaml

            volumeMounts:
            - mountPath: /run/xtables.lock
              name: xtables-lock
              readOnly: false
            - name: config-volume
              mountPath: /etc/coredns
            - name: kube-dns-config
              mountPath: /etc/kube-dns
          volumes:
          - name: xtables-lock
            hostPath:
              path: /run/xtables.lock
              type: FileOrCreate
          - name: kube-dns-config
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/output/flag_output_set_values.golden.yaml

              readOnly: true
          securityContext:
            runAsGroup: 1337
            runAsNonRoot: true
            runAsUser: 1337
          serviceAccountName: istio-ingressgateway-service-account
          volumes:
          - emptyDir: {}
            name: workload-socket
          - emptyDir: {}
            name: credential-socket
          - emptyDir: {}
            name: workload-certs
          - configMap:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. pkg/kubelet/config/common_test.go

    				VolumeMounts: []v1.VolumeMount{
    					{
    						Name:      "ctb-volume",
    						MountPath: "/var/run/ctb-volume",
    					},
    				},
    			}},
    			Volumes: []v1.Volume{
    				{
    					Name: "ctb-volume",
    					VolumeSource: v1.VolumeSource{
    						Projected: &v1.ProjectedVolumeSource{
    							Sources: []v1.VolumeProjection{
    								{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. src/os/dir_windows.go

    	// It is safe to query d.vol once and reuse the value.
    	// Hard links are not allowed to reference files in other volumes.
    	// Junctions and symbolic links can reference files and directories in other volumes,
    	// but the reparse point should still live in the parent volume.
    	var flags uint32
    	err := windows.GetVolumeInformationByHandle(h, nil, 0, &d.vol, nil, &flags, nil, 0)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

              name: custom-bootstrap-volume
            {{- end }}
            {{- end }}
    {{- if $.IncludeExtAuthz }}
          - name: ext-authz
            image: {{ $.ImageHub }}/ext-authz:{{ $.ImageTag }}
            imagePullPolicy: {{ $.ImagePullPolicy }}
            ports:
            - containerPort: 8000
            - containerPort: 9000
    {{- end }}
          volumes:
          - emptyDir: {}
            name: istio-data
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/str/str_test.go

    		{`C:\foo\bar`, `C:\foo\`, `bar`},
    		// if prefix is not s's prefix, return s
    		{`C:\foo`, `C:\bar`, `C:\foo`},
    		{`C:\foo`, `C:\foo\bar`, `C:\foo`},
    		{`C:`, `C:\`, `C:`},
    		// if volumes are different, return s
    		{`C:`, ``, `C:`},
    		{`C:\`, ``, `C:\`},
    		{`C:\foo`, ``, `C:\foo`},
    		{`C:\foo`, `\foo`, `C:\foo`},
    		{`C:\foo`, `D:\foo`, `C:\foo`},
    
    		//UNC path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 25 16:49:13 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. pkg/api/testing/deep_copy_test.go

    		UID:               types.UID("a671734a-e8e5-11e4-8fde-42010af09327"),
    		ResourceVersion:   "22",
    		CreationTimestamp: parseTimeOrDie("2015-04-22T11:49:36Z"),
    	},
    	Spec: api.PodSpec{
    		Volumes: []api.Volume{
    			{
    				Name: "varetcd",
    				VolumeSource: api.VolumeSource{
    					HostPath: &api.HostPathVolumeSource{
    						Path: "/mnt/master-pd/var/etcd",
    					},
    				},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  9. plugin/pkg/admission/namespace/exists/admission_test.go

    }
    
    // newPod returns a new pod for the specified namespace
    func newPod(namespace string) api.Pod {
    	return api.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: "123", Namespace: namespace},
    		Spec: api.PodSpec{
    			Volumes:    []api.Volume{{Name: "vol"}},
    			Containers: []api.Container{{Name: "ctr", Image: "image"}},
    		},
    	}
    }
    
    // TestAdmissionNamespaceExists verifies pod is admitted only if namespace exists.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. pkg/kubelet/config/common.go

    	return nil
    }
    
    type defaultFunc func(pod *api.Pod) error
    
    // A static pod tried to use a ClusterTrustBundle projected volume source.
    var ErrStaticPodTriedToUseClusterTrustBundle = errors.New("static pods may not use ClusterTrustBundle projected volume sources")
    
    // tryDecodeSinglePod takes data and tries to extract valid Pod config information from it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top