Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for submatch (0.19 sec)

  1. pkg/kubelet/kubelet_pods.go

    			return nil, cleanupAction, err
    		}
    
    		subPath := mount.SubPath
    		if mount.SubPathExpr != "" {
    			subPath, err = kubecontainer.ExpandContainerVolumeMounts(mount, expandEnvs)
    
    			if err != nil {
    				return nil, cleanupAction, err
    			}
    		}
    
    		if subPath != "" {
    			if utilfs.IsAbs(subPath) {
    				return nil, cleanupAction, fmt.Errorf("error SubPath `%s` must not be an absolute path", subPath)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

    	volumesecret "k8s.io/kubernetes/pkg/volume/secret"
    	volumetest "k8s.io/kubernetes/pkg/volume/testing"
    	"k8s.io/kubernetes/pkg/volume/util"
    	"k8s.io/kubernetes/pkg/volume/util/hostutil"
    	"k8s.io/kubernetes/pkg/volume/util/subpath"
    	"k8s.io/utils/clock"
    	testingclock "k8s.io/utils/clock/testing"
    	utilpointer "k8s.io/utils/pointer"
    )
    
    func init() {
    }
    
    const (
    	testKubeletHostname = "127.0.0.1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    	cgroupRoot string
    
    	// Mounter to use for volumes.
    	mounter mount.Interface
    
    	// hostutil to interact with filesystems
    	hostutil hostutil.HostUtils
    
    	// subpather to execute subpath actions
    	subpather subpath.Interface
    
    	// Manager of non-Runtime containers.
    	containerManager cm.ContainerManager
    
    	// Maximum Number of Pods which can be run by this Kubelet
    	maxPods int
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. samples/addons/grafana.yaml

                - name: config
                  mountPath: "/etc/grafana/provisioning/datasources/datasources.yaml"
                  subPath: "datasources.yaml"
                - name: config
                  mountPath: "/etc/grafana/provisioning/dashboards/dashboardproviders.yaml"
                  subPath: "dashboardproviders.yaml"
              ports:
                - name: grafana
                  containerPort: 3000
                  protocol: TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    inherited from class java.lang.Object clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait Constructor Detail FeatureMatcher public FeatureMatcher(Matcher<? super U> subMatcher, java.lang.String featureDescription, java.lang.String featureName) Constructor Parameters: subMatcher - The matcher to apply to the feature featureDescription - Descriptive text to use in describeTo featureName - Identifying text for mismatch message Method Detail featureValueOf protected abstract...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            },
            "subPath": {
              "description": "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).",
              "type": "string"
            },
            "subPathExpr": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  7. pkg/volume/util/operationexecutor/operation_generator.go

    		podDir := filepath.Join(podsDir, string(volumeToUnmount.PodUID))
    		if err := subpather.CleanSubPaths(podDir, volumeToUnmount.InnerVolumeSpecName); err != nil {
    			eventErr, detailedErr := volumeToUnmount.GenerateError("error cleaning subPath mounts", err)
    			return volumetypes.NewOperationContext(eventErr, detailedErr, migrated)
    		}
    
    		// Execute unmount
    		unmountErr := volumeUnmounter.TearDown()
    		if unmountErr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.4.md

    * Implement TLS bootstrap for kubelet using `--experimental-bootstrap-kubeconfig`  (2nd take) ([#30922](https://github.com/kubernetes/kubernetes/pull/30922), [@yifan-gu](https://github.com/yifan-gu))
    * rkt: Support subPath volume mounts feature ([#30934](https://github.com/kubernetes/kubernetes/pull/30934), [@yifan-gu](https://github.com/yifan-gu))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
Back to top