Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for MountPath (0.14 sec)

  1. cluster/gce/gci/configure-helper.sh

        CLOUD_CONFIG_VOLUME="{\"name\": \"cloudconfigmount\",\"hostPath\": {\"path\": \"/etc/gce.conf\", \"type\": \"FileOrCreate\"}},"
        CLOUD_CONFIG_MOUNT="{\"name\": \"cloudconfigmount\",\"mountPath\": \"/etc/gce.conf\", \"readOnly\": true},"
      fi
      DOCKER_REGISTRY="registry.k8s.io"
      if [[ -n "${KUBE_DOCKER_REGISTRY:-}" ]]; then
        DOCKER_REGISTRY="${KUBE_DOCKER_REGISTRY}"
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. samples/addons/grafana.yaml

              volumeMounts:
                - name: config
                  mountPath: "/etc/grafana/grafana.ini"
                  subPath: grafana.ini
                - name: storage
                  mountPath: "/var/lib/grafana"
                - name: dashboards-istio
                  mountPath: "/var/lib/grafana/dashboards/istio"
                - name: dashboards-istio-services
                  mountPath: "/var/lib/grafana/dashboards/istio-services"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  3. cmd/xl-storage.go

    func (s *xlStorage) DiskInfo(ctx context.Context, _ DiskInfoOptions) (info DiskInfo, err error) {
    	info, err = s.diskInfoCache.GetWithCtx(ctx)
    	info.NRRequests = s.nrRequests
    	info.Rotational = s.rotational
    	info.MountPath = s.drivePath
    	info.Endpoint = s.endpoint.String()
    	info.Scanning = atomic.LoadInt32(&s.scanning) == 1
    	return info, err
    }
    
    // getVolDir - will convert incoming volume names to
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top