Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 525 for VolumeMounts (0.15 sec)

  1. manifests/charts/gateways/istio-ingress/templates/injected-deployment.yaml

                value: "true"
              {{- end }}
              {{- range $key, $val := $gateway.env }}
              - name: {{ $key }}
                value: {{ $val | quote }}
              {{- end }}
              volumeMounts:
              {{- range $gateway.secretVolumes }}
              - name: {{ .name }}
                mountPath: {{ .mountPath | quote }}
                readOnly: true
              {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods_windows_test.go

    )
    
    func TestMakeMountsWindows(t *testing.T) {
    	// TODO: remove skip once the failing test has been fixed.
    	t.Skip("Skip failing test on Windows.")
    	container := v1.Container{
    		VolumeMounts: []v1.VolumeMount{
    			{
    				MountPath: "c:/etc/hosts",
    				Name:      "disk",
    				ReadOnly:  false,
    			},
    			{
    				MountPath: "c:/mnt/path3",
    				Name:      "disk",
    				ReadOnly:  true,
    			},
    			{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/staticpod/utils.go

    	})
    
    	return v
    }
    
    // VolumeMountMapToSlice returns a slice of volumes from a map's values
    func VolumeMountMapToSlice(volumeMounts map[string]v1.VolumeMount) []v1.VolumeMount {
    	v := make([]v1.VolumeMount, 0, len(volumeMounts))
    
    	for _, volMount := range volumeMounts {
    		v = append(v, volMount)
    	}
    
    	sort.Slice(v, func(i, j int) bool {
    		return strings.Compare(v[i].Name, v[j].Name) == -1
    	})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/output/pilot_k8s_settings.golden.yaml

            securityContext:
              allowPrivilegeEscalation: false
              capabilities:
                drop:
                - ALL
              readOnlyRootFilesystem: true
              runAsNonRoot: true
            volumeMounts:
            - mountPath: /var/run/secrets/tokens
              name: istio-token
              readOnly: true
            - mountPath: /var/run/secrets/istio-dns
              name: local-certs
            - mountPath: /etc/cacerts
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/output/pilot_override_values.golden.yaml

            securityContext:
              allowPrivilegeEscalation: false
              capabilities:
                drop:
                - ALL
              readOnlyRootFilesystem: true
              runAsNonRoot: true
            volumeMounts:
            - mountPath: /var/run/secrets/tokens
              name: istio-token
              readOnly: true
            - mountPath: /var/run/secrets/istio-dns
              name: local-certs
            - mountPath: /etc/cacerts
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/core.v1.ReplicationController.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.yaml

            terminationMessagePolicy: terminationMessagePolicyValue
            tty: true
            volumeDevices:
            - devicePath: devicePathValue
              name: nameValue
            volumeMounts:
            - mountPath: mountPathValue
              mountPropagation: mountPropagationValue
              name: nameValue
              readOnly: true
              recursiveReadOnly: recursiveReadOnlyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/extensions.v1beta1.DaemonSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 54.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/extensions.v1beta1.DaemonSet.yaml

            terminationMessagePolicy: terminationMessagePolicyValue
            tty: true
            volumeDevices:
            - devicePath: devicePathValue
              name: nameValue
            volumeMounts:
            - mountPath: mountPathValue
              mountPropagation: mountPropagationValue
              name: nameValue
              readOnly: true
              recursiveReadOnly: recursiveReadOnlyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/extensions.v1beta1.Deployment.yaml

            terminationMessagePolicy: terminationMessagePolicyValue
            tty: true
            volumeDevices:
            - devicePath: devicePathValue
              name: nameValue
            volumeMounts:
            - mountPath: mountPathValue
              mountPropagation: mountPropagationValue
              name: nameValue
              readOnly: true
              recursiveReadOnly: recursiveReadOnlyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top