Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for readOnly (0.15 sec)

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

              name: istio-token
              readOnly: true
            - mountPath: /var/run/secrets/istio-dns
              name: local-certs
            - mountPath: /etc/cacerts
              name: cacerts
              readOnly: true
            - mountPath: /var/run/secrets/remote
              name: istio-kubeconfig
              readOnly: true
            - mountPath: /var/run/secrets/istiod/tls
    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. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "string"
            },
            "readOnly": {
              "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
              "type": "boolean"
            }
          },
          "required": [
            "diskName",
            "diskURI"
          ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    			for _, vol := range container.VolumeMounts {
    				volStatus := v1.VolumeMountStatus{
    					Name:      vol.Name,
    					MountPath: vol.MountPath,
    					ReadOnly:  vol.ReadOnly,
    				}
    				if vol.ReadOnly {
    					rroMode := v1.RecursiveReadOnlyDisabled
    					if b, err := resolveRecursiveReadOnly(vol, supportsRRO); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_test.go

    			expected:           false,
    			expectedErr:        "",
    		},
    		{
    			m:                  v1.VolumeMount{Name: "ro", ReadOnly: true},
    			runtimeSupportsRRO: true,
    			expected:           false,
    			expectedErr:        "",
    		},
    		{
    			m:                  v1.VolumeMount{Name: "ro", ReadOnly: true, RecursiveReadOnly: ptr.To(v1.RecursiveReadOnlyDisabled)},
    			runtimeSupportsRRO: true,
    			expected:           false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  5. pkg/apis/apps/validation/validation_test.go

    	}
    	validPodSpecVolume := api.PodSpec{
    		Volumes:       []api.Volume{{Name: "gcepd", VolumeSource: api.VolumeSource{GCEPersistentDisk: &api.GCEPersistentDiskVolumeSource{PDName: "my-PD", FSType: "ext4", Partition: 1, ReadOnly: false}}}},
    		RestartPolicy: api.RestartPolicyAlways,
    		DNSPolicy:     api.DNSClusterFirst,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

    function main() {
      echo "Start to configure instance for kubernetes"
      log-wrap 'DetectHostInfo' detect_host_info
    
      readonly UUID_MNT_PREFIX="/mnt/disks/by-uuid/google-local-ssds"
      readonly UUID_BLOCK_PREFIX="/dev/disk/by-uuid/google-local-ssds"
      readonly COREDNS_AUTOSCALER="Deployment/coredns"
      readonly KUBEDNS_AUTOSCALER="Deployment/kube-dns"
    
      # Resource requests of master components.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    	ldr.SetSymSect(ldr.LookupOrCreateSym("runtime.rodata", 0), sect)
    	ldr.SetSymSect(ldr.LookupOrCreateSym("runtime.erodata", 0), sect)
    	if !ctxt.UseRelro() {
    		ldr.SetSymSect(ldr.LookupOrCreateSym("runtime.types", 0), sect)
    		ldr.SetSymSect(ldr.LookupOrCreateSym("runtime.etypes", 0), sect)
    	}
    	for _, symn := range sym.ReadOnly {
    		symnStartValue := state.datsize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    }} - name: istio-token mountPath: /var/run/secrets/tokens readOnly: true {{- end }} - name: local-certs mountPath: /var/run/secrets/istio-dns - name: cacerts mountPath: /etc/cacerts readOnly: true - name: istio-kubeconfig mountPath: /var/run/secrets/remote readOnly: true {{- if .Values.pilot.jwksResolverExtraRoo }} - name: extracacerts mountPath: /cacerts {{- end }} - name: istio-csr-dns-cert mountPath: /var/run/secrets/istiod/tls readOnly: true - name: istio-csr-ca-configmap mountPath: /var/run/secrets/istiod/ca...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  9. pkg/apis/core/zz_generated.deepcopy.go

    		*out = new(AzureDataDiskCachingMode)
    		**out = **in
    	}
    	if in.FSType != nil {
    		in, out := &in.FSType, &out.FSType
    		*out = new(string)
    		**out = **in
    	}
    	if in.ReadOnly != nil {
    		in, out := &in.ReadOnly, &out.ReadOnly
    		*out = new(bool)
    		**out = **in
    	}
    	if in.Kind != nil {
    		in, out := &in.Kind, &out.Kind
    		*out = new(AzureDataDiskKind)
    		**out = **in
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		*out = new(AzureDataDiskCachingMode)
    		**out = **in
    	}
    	if in.FSType != nil {
    		in, out := &in.FSType, &out.FSType
    		*out = new(string)
    		**out = **in
    	}
    	if in.ReadOnly != nil {
    		in, out := &in.ReadOnly, &out.ReadOnly
    		*out = new(bool)
    		**out = **in
    	}
    	if in.Kind != nil {
    		in, out := &in.Kind, &out.Kind
    		*out = new(AzureDataDiskKind)
    		**out = **in
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
Back to top