Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 414 for volumeID (0.14 sec)

  1. pkg/volume/metrics_nil.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package volume
    
    var _ MetricsProvider = &MetricsNil{}
    
    // MetricsNil represents a MetricsProvider that does not support returning
    // Metrics.  It serves as a placeholder for Volumes that do not yet support
    // metrics.
    type MetricsNil struct{}
    
    // SupportsMetrics returns false for the MetricsNil type.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 20 15:10:23 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/options/options.go

    		"The period for syncing persistent volumes and persistent volume claims")
    	fs.StringVar(&o.VolumeConfigFlags.PersistentVolumeRecyclerPodTemplateFilePathNFS,
    		"pv-recycler-pod-template-filepath-nfs", o.VolumeConfigFlags.PersistentVolumeRecyclerPodTemplateFilePathNFS,
    		"The file path to a pod definition used as a template for NFS persistent volume recycling")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 04 20:45:21 UTC 2019
    - 5.6K bytes
    - Viewed (0)
  3. pkg/volume/secret/secret.go

    type secretPlugin struct {
    	host      volume.VolumeHost
    	getSecret func(namespace, name string) (*v1.Secret, error)
    }
    
    var _ volume.VolumePlugin = &secretPlugin{}
    
    func wrappedVolumeSpec() volume.Spec {
    	return volume.Spec{
    		Volume: &v1.Volume{VolumeSource: v1.VolumeSource{EmptyDir: &v1.EmptyDirVolumeSource{Medium: v1.StorageMediumMemory}}},
    	}
    }
    
    func getPath(uid types.UID, volName string, host volume.VolumeHost) string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. cluster/addons/metrics-server/metrics-server-deployment.yaml

              - --minClusterSize={{ metrics_server_min_cluster_size }}
              # Use kube-apiserver metrics to avoid periodically listing nodes.
              - --use-metrics=true
          volumes:
          - name: metrics-server-config-volume
            configMap:
              name: metrics-server-config
          - emptyDir: {}
            name: tmp-dir
          tolerations:
            - key: "CriticalAddonsOnly"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:50:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. samples/ratelimit/rate-limit-service.yaml

            ports:
            - containerPort: 8080
            - containerPort: 8081
            - containerPort: 6070
            volumeMounts:
            - name: config-volume
              mountPath: /data/ratelimit/config
          volumes:
          - name: config-volume
            configMap:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. cluster/addons/fluentd-gcp/fluentd-gcp-ds.yaml

            effect: "NoExecute"
          - operator: "Exists"
            effect: "NoSchedule"
          volumes:
          - name: varlog
            hostPath:
              path: /var/log
          - name: varlibdockercontainers
            hostPath:
              path: /var/lib/docker/containers
          - name: config-volume
            configMap:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 27 17:54:10 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/reset/removeetcdmember_test.go

    const (
    	etcdPod = `apiVersion: v1
    kind: Pod
    metadata:
    spec:
      volumes:
      - hostPath:
          path: /path/to/etcd
          type: DirectoryOrCreate
        name: etcd-data
      - hostPath:
          path: /etc/kubernetes/pki/etcd
          type: DirectoryOrCreate
        name: etcd-certs`
    
    	etcdPodWithoutDataVolume = `apiVersion: v1
    kind: Pod
    metadata:
    spec:
      volumes:
      - hostPath:
          path: /etc/kubernetes/pki/etcd
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 03:55:19 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  8. plugin/pkg/admission/storage/persistentvolume/resize/admission.go

    	if newSize.Cmp(oldSize) <= 0 {
    		return nil
    	}
    
    	if oldPvc.Status.Phase != api.ClaimBound {
    		return admission.NewForbidden(a, fmt.Errorf("Only bound persistent volume claims can be expanded"))
    	}
    
    	// Growing Persistent volumes is only allowed for PVCs for which their StorageClass
    	// explicitly allows it
    	if !pvcr.allowResize(pvc, oldPvc) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 20 15:11:00 UTC 2019
    - 3.9K bytes
    - Viewed (0)
  9. cluster/addons/volumesnapshots/volume-snapshot-controller/volume-snapshot-controller-deployment.yaml

    ---
    kind: StatefulSet
    apiVersion: apps/v1
    metadata:
      name: volume-snapshot-controller
      namespace: kube-system
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    spec:
      serviceName: "volume-snapshot-controller"
      replicas: 1
      selector:
        matchLabels:
          app: volume-snapshot-controller
      template:
        metadata:
          labels:
            app: volume-snapshot-controller
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:47:15 UTC 2024
    - 758 bytes
    - Viewed (0)
  10. cluster/addons/dns/coredns/coredns.yaml.base

              capabilities:
                add:
                - NET_BIND_SERVICE
                drop:
                - ALL
              readOnlyRootFilesystem: true
          dnsPolicy: Default
          volumes:
            - name: config-volume
              configMap:
                name: coredns
                items:
                - key: Corefile
                  path: Corefile
    ---
    apiVersion: v1
    kind: Service
    metadata:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 23:50:49 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top