Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for VolumeMounts (0.35 sec)

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

                  runAsUser: {{ .ProxyUID | default "1337" }}
                  {{- end }}
                  {{- end }}
                resources:
              {{ template "resources" . }}
                volumeMounts:
                - name: workload-socket
                  mountPath: /var/run/secrets/workload-spiffe-uds
                - name: credential-socket
                  mountPath: /var/run/secrets/credential-uds
    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

              "format": "int32",
              "type": "integer"
            },
            "readOnly": {
              "description": "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
              "type": "boolean"
            },
            "volumeID": {
    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

    			// ContainerStatus.ImageID is historically intentional and should
    			// not change.
    			ImageID:     cs.ImageRef,
    			ContainerID: cid,
    		}
    		if oldStatus != nil {
    			status.VolumeMounts = oldStatus.VolumeMounts // immutable
    		}
    		switch {
    		case cs.State == kubecontainer.ContainerStateRunning:
    			status.State.Running = &v1.ContainerStateRunning{StartedAt: metav1.NewTime(cs.StartedAt)}
    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/apis/core/zz_generated.deepcopy.go

    		copy(*out, *in)
    	}
    	if in.RestartPolicy != nil {
    		in, out := &in.RestartPolicy, &out.RestartPolicy
    		*out = new(ContainerRestartPolicy)
    		**out = **in
    	}
    	if in.VolumeMounts != nil {
    		in, out := &in.VolumeMounts, &out.VolumeMounts
    		*out = make([]VolumeMount, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.VolumeDevices != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		copy(*out, *in)
    	}
    	if in.RestartPolicy != nil {
    		in, out := &in.RestartPolicy, &out.RestartPolicy
    		*out = new(ContainerRestartPolicy)
    		**out = **in
    	}
    	if in.VolumeMounts != nil {
    		in, out := &in.VolumeMounts, &out.VolumeMounts
    		*out = make([]VolumeMount, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.VolumeDevices != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    podDisruptionBudget: {} # podDisruptionBudget: {} terminationGracePeri: 30 # A list of `Volumes` added into the Gateway Pods. See # https://kubernetes.io/docs/concepts/storage/volumes/. volumes: [] # A list of `VolumeMounts` added into the Gateway Pods. See # https://kubernetes.io/docs/concepts/storage/volumes/. volumeMounts: [] # Configure this to a higher priority class in order to make sure your Istio gateway pods # will not be killed because of low priority class. # Refer to https://kubernetes.io/docs/concepts...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

        command:
        - /bin/sh
        args:
        - -c
        - test -e /scrub && find /scrub -mindepth 1 -delete && test -z $(ls -A /scrub) || exit 1
        volumeMounts:
        - name: vol
          mountPath: /scrub
    EOF
    
    # fixup the alternate registry if specified
    if [[ -n "${KUBE_ADDON_REGISTRY:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. samples/addons/grafana.yaml

                allowPrivilegeEscalation: false
                capabilities:
                  drop:
                  - ALL
                seccompProfile:
                  type: RuntimeDefault
              volumeMounts:
                - name: config
                  mountPath: "/etc/grafana/grafana.ini"
                  subPath: grafana.ini
                - name: storage
                  mountPath: "/var/lib/grafana"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
Back to top