Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 288 for read_only (0.22 sec)

  1. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions.go

    		if volume.GCEPersistentDisk != nil && existingVolume.GCEPersistentDisk != nil {
    			disk, existingDisk := volume.GCEPersistentDisk, existingVolume.GCEPersistentDisk
    			if disk.PDName == existingDisk.PDName && !(disk.ReadOnly && existingDisk.ReadOnly) {
    				return true
    			}
    		}
    
    		if volume.AWSElasticBlockStore != nil && existingVolume.AWSElasticBlockStore != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  2. manifests/charts/gateways/istio-egress/templates/deployment.yaml

    {{- end }}
              - name: istio-token
                mountPath: /var/run/secrets/tokens
                readOnly: true
              {{- if .Values.global.mountMtlsCerts }}
              # Use the key and cert mounted to /etc/certs/ for the in-cluster mTLS communications.
              - name: istio-certs
                mountPath: /etc/certs
                readOnly: true
              {{- end }}
              - mountPath: /var/lib/istio/data
                name: istio-data
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. pkg/volume/volume_linux_test.go

    // that is expected by k8s. If returns true if it does otherwise false
    func verifyDirectoryPermission(path string, readonly bool) bool {
    	info, err := os.Lstat(path)
    	if err != nil {
    		return false
    	}
    	stat, ok := info.Sys().(*syscall.Stat_t)
    	if !ok || stat == nil {
    		return false
    	}
    	unixPerms := rwMask
    
    	if readonly {
    		unixPerms = roMask
    	}
    
    	unixPerms |= execMask
    	filePerm := info.Mode().Perm()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  4. plugin/pkg/admission/security/podsecurity/testdata/pod_baseline.yaml

        volumeMounts:
        - mountPath: /kube-dns-config
          name: kube-dns-config
        - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
          name: kube-api-access-s8rz5
          readOnly: true
      - args:
        - -v=2
        - -logtostderr
        - -configDir=/etc/k8s/dns/dnsmasq-nanny
        - -restartDnsmasq=true
        - --
        - -k
        - --cache-size=1000
        - --no-negcache
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 04 16:26:30 UTC 2021
    - 18.1K bytes
    - Viewed (0)
  5. pkg/controller/volume/attachdetach/testing/testvolumespec.go

    									Name:      "volumeMountName",
    									ReadOnly:  false,
    									MountPath: "/mnt",
    								},
    							},
    						},
    					},
    					Volumes: []v1.Volume{
    						{
    							Name: "volumeName",
    							VolumeSource: v1.VolumeSource{
    								GCEPersistentDisk: &v1.GCEPersistentDiskVolumeSource{
    									PDName:   "pdName",
    									FSType:   "ext4",
    									ReadOnly: false,
    								},
    							},
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 17 08:48:30 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  6. plugin/pkg/admission/security/podsecurity/testdata/pod_restricted.yaml

        volumeMounts:
        - mountPath: /kube-dns-config
          name: kube-dns-config
        - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
          name: kube-api-access-s8rz5
          readOnly: true
      - args:
        - -v=2
        - -logtostderr
        - -configDir=/etc/k8s/dns/dnsmasq-nanny
        - -restartDnsmasq=true
        - --
        - -k
        - --cache-size=1000
        - --no-negcache
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 04 16:26:30 UTC 2021
    - 18.3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/controlplane/volumes.go

    }
    
    func (c *controlPlaneHostPathMounts) NewHostPathMount(component, mountName, hostPath, containerPath string, readOnly bool, hostPathType *v1.HostPathType) {
    	vol := staticpodutil.NewVolume(mountName, hostPath, hostPathType)
    	c.addComponentVolume(component, vol)
    	volMount := staticpodutil.NewVolumeMount(mountName, containerPath, readOnly)
    	c.addComponentVolumeMount(component, volMount)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

        public TestFile zipTo(TestFile zipFile, boolean readOnly) {
            new TestFileHelper(this).zipTo(zipFile, useNativeTools, readOnly);
            return this;
        }
    
        public TestFile tarTo(TestFile tarFile) {
            return tarTo(tarFile, false);
        }
    
        public TestFile tarTo(TestFile tarFile, boolean readOnly) {
            new TestFileHelper(this).tarTo(tarFile, useNativeTools, readOnly);
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  9. src/cmd/internal/goobj/objfile.go

    	return w.off
    }
    
    type Reader struct {
    	b        []byte // mmapped bytes, if not nil
    	readonly bool   // whether b is backed with read-only memory
    
    	start uint32
    	h     Header // keep block offsets
    }
    
    func NewReaderFromBytes(b []byte, readonly bool) *Reader {
    	r := &Reader{b: b, readonly: readonly, start: 0}
    	err := r.h.Read(r)
    	if err != nil {
    		return nil
    	}
    	return r
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  10. pkg/controller/volume/attachdetach/util/util.go

    	claimName := ""
    	readOnly := false
    	if pvcSource := podVolume.VolumeSource.PersistentVolumeClaim; pvcSource != nil {
    		claimName = pvcSource.ClaimName
    		readOnly = pvcSource.ReadOnly
    	}
    	isEphemeral := podVolume.VolumeSource.Ephemeral != nil
    	if isEphemeral {
    		claimName = ephemeral.VolumeClaimName(pod, &podVolume)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top