Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 433 for VolumeMounts (0.2 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/container.go

    	RestartPolicy            *corev1.ContainerRestartPolicy            `json:"restartPolicy,omitempty"`
    	VolumeMounts             []VolumeMountApplyConfiguration           `json:"volumeMounts,omitempty"`
    	VolumeDevices            []VolumeDeviceApplyConfiguration          `json:"volumeDevices,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/proxy-override.yaml

                initialDelaySeconds: 10
                periodSeconds: 2
                timeoutSeconds: 3
              # Check various types merge find
              tty: true
              terminationMessagePath: "/foo/bar"
              volumeMounts:
                - mountPath: /etc/certs
                  name: certs
              lifecycle:
                preStop:
                  exec:
                    command: ["sleep", "10"]
              securityContext:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 19:52:06 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. manifests/charts/gateway/values.yaml

      # 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.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 16:51:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. plugin/pkg/admission/serviceaccount/admission.go

    		for _, volumeMount := range container.VolumeMounts {
    			// Existing mounts at the default mount path prevent mounting of the API token
    			if volumeMount.MountPath == DefaultAPITokenMountPath {
    				existingContainerMount = true
    				break
    			}
    		}
    		if !existingContainerMount {
    			pod.Spec.InitContainers[i].VolumeMounts = append(pod.Spec.InitContainers[i].VolumeMounts, volumeMount)
    			needsTokenVolume = true
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 17:49:30 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Pod.yaml

        terminationMessagePath: terminationMessagePathValue
        terminationMessagePolicy: terminationMessagePolicyValue
        tty: true
        volumeDevices:
        - devicePath: devicePathValue
          name: nameValue
        volumeMounts:
        - mountPath: mountPathValue
          mountPropagation: mountPropagationValue
          name: nameValue
          readOnly: true
          recursiveReadOnly: recursiveReadOnlyValue
          subPath: subPathValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/statefulset.yaml.injected

        spec:
          containers:
          - image: fake.docker.io/google-samples/hello-go-gke:1.0
            name: hello
            ports:
            - containerPort: 80
              name: http
            resources: {}
            volumeMounts:
            - mountPath: /var/lib/data
              name: data
          - args:
            - proxy
            - sidecar
            - --domain
            - $(POD_NAMESPACE).svc.cluster.local
            - --proxyLogLevel=warning
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. manifests/charts/ztunnel/templates/daemonset.yaml

            {{- end }}
            {{- end }}
            volumeMounts:
            - mountPath: /var/run/secrets/istio
              name: istiod-ca-cert
            - mountPath: /var/run/secrets/tokens
              name: istio-token
            - mountPath: /var/run/ztunnel
              name: cni-ztunnel-sock-dir
            - mountPath: /tmp
              name: tmp
            {{- with .Values.volumeMounts }}
              {{- toYaml . | nindent 8 }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 01:33:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/grpc-agent.yaml.injected

            image: fake.docker.io/google-samples/traffic-go-gke:1.0
            name: traffic
            readinessProbe:
              httpGet:
                port: 80
            resources: {}
            volumeMounts:
            - mountPath: /var/lib/istio/data
              name: istio-data
            - mountPath: /etc/istio/proxy
              name: istio-xds
            - mountPath: /var/run/secrets/workload-spiffe-credentials
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    		t.Run(tc.desc, func(t *testing.T) {
    			// create dswp
    			dswp, fakePodManager, fakePodState := prepareDswpWithVolume(t)
    
    			// create pod
    			containers := []v1.Container{
    				{
    					VolumeMounts: []v1.VolumeMount{
    						{
    							Name:      "dswp-test-volume-name",
    							MountPath: "/mnt",
    						},
    					},
    				},
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  10. samples/bookinfo/platform/kube/bookinfo-db.yaml

        spec:
          containers:
          - name: mongodb 
            image: docker.io/istio/examples-bookinfo-mongodb:1.20.1
            imagePullPolicy: IfNotPresent
            ports:
            - containerPort: 27017
            volumeMounts:
            - name: data-db
              mountPath: /data/db
          volumes:
          - name: data-db
            emptyDir: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top