Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,564 for setupCa (0.18 sec)

  1. pkg/volume/downwardapi/downwardapi.go

    	setupSuccess := false
    	if err := wrapped.SetUpAt(dir, mounterArgs); err != nil {
    		klog.Errorf("Unable to setup downwardAPI volume %v for pod %v/%v: %s", b.volName, b.pod.Namespace, b.pod.Name, err.Error())
    		return err
    	}
    
    	if err := volumeutil.MakeNestedMountpoints(b.volName, dir, *b.pod); err != nil {
    		return err
    	}
    
    	defer func() {
    		// Clean up directories if setup fails
    		if !setupSuccess {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. pkg/volume/secret/secret.go

    	}
    }
    
    func (b *secretVolumeMounter) SetUp(mounterArgs volume.MounterArgs) error {
    	return b.SetUpAt(b.GetPath(), mounterArgs)
    }
    
    func (b *secretVolumeMounter) SetUpAt(dir string, mounterArgs volume.MounterArgs) error {
    	klog.V(3).Infof("Setting up volume %v for pod %v at %v", b.volName, b.pod.UID, dir)
    
    	// Wrap EmptyDir, let it do the setup.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_mounter.go

    }
    
    // volume.Mounter methods
    var _ volume.Mounter = &csiMountMgr{}
    
    func (c *csiMountMgr) SetUp(mounterArgs volume.MounterArgs) error {
    	return c.SetUpAt(c.GetPath(), mounterArgs)
    }
    
    func (c *csiMountMgr) SetUpAt(dir string, mounterArgs volume.MounterArgs) error {
    	klog.V(4).Infof(log("Mounter.SetUpAt(%s)", dir))
    
    	csi, err := c.csiClientGetter.Get()
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (1)
  4. pkg/volume/volume.go

    	// be called more than once, so implementations must be
    	// idempotent.
    	SetUpAt(dir string, mounterArgs MounterArgs) error
    	// GetAttributes returns the attributes of the mounter.
    	// This function is called after SetUp()/SetUpAt().
    	GetAttributes() Attributes
    }
    
    // Unmounter interface provides methods to cleanup/unmount the volumes.
    type Unmounter interface {
    	Volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. samples/custom-bootstrap/README.md

    We can create our helloworld app, using the custom config, with:
    
    ```bash
    kubectl apply -f example-app.yaml
    ```
    
    If you don't have [automatic sidecar injection](https://istio.io/docs/setup/additional-setup/sidecar-injection/#automatic-sidecar-injection)
    set in your cluster you will need to manually inject it to the services instead:
    
    ```bash
    istioctl kube-inject -f example-app.yaml -o example-app-istio.yaml
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 22:34:00 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/common/deployment/echos.go

    		res = append(res, p)
    	}
    	return res
    }
    
    // SetupSingleNamespace calls Setup and returns a SingleNamespaceView.
    func SetupSingleNamespace(view *SingleNamespaceView, cfg Config) resource.SetupFn {
    	cfg.NamespaceCount = 1
    	return func(ctx resource.Context) error {
    		// Perform a setup with 1 namespace.
    		var apps Echos
    		if err := Setup(&apps, cfg)(ctx); err != nil {
    			return err
    		}
    
    		// Store the view.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. pkg/volume/configmap/configmap.go

    	}
    }
    
    func (b *configMapVolumeMounter) SetUp(mounterArgs volume.MounterArgs) error {
    	return b.SetUpAt(b.GetPath(), mounterArgs)
    }
    
    func (b *configMapVolumeMounter) SetUpAt(dir string, mounterArgs volume.MounterArgs) error {
    	klog.V(3).Infof("Setting up volume %v for pod %v at %v", b.volName, b.pod.UID, dir)
    
    	// Wrap EmptyDir, let it do the setup.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. cmd/routers.go

    )
    
    // Composed function registering routers for only distributed Erasure setup.
    func registerDistErasureRouters(router *mux.Router, endpointServerPools EndpointServerPools) {
    	// Register storage REST router only if its a distributed setup.
    	registerStorageRESTHandlers(router, endpointServerPools, globalGrid.Load())
    
    	// Register peer REST router only if its a distributed setup.
    	registerPeerRESTHandlers(router, globalGrid.Load())
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 19:08:18 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. pkg/volume/projected/projected.go

    		ReadOnly:       true,
    		Managed:        true,
    		SELinuxRelabel: true,
    	}
    
    }
    
    func (s *projectedVolumeMounter) SetUp(mounterArgs volume.MounterArgs) error {
    	return s.SetUpAt(s.GetPath(), mounterArgs)
    }
    
    func (s *projectedVolumeMounter) SetUpAt(dir string, mounterArgs volume.MounterArgs) error {
    	klog.V(3).Infof("Setting up volume %v for pod %v at %v", s.volName, s.pod.UID, dir)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. pkg/volume/portworx/portworx.go

    		Managed:        !b.readOnly,
    		SELinuxRelabel: false,
    	}
    }
    
    // SetUp attaches the disk and bind mounts to the volume path.
    func (b *portworxVolumeMounter) SetUp(mounterArgs volume.MounterArgs) error {
    	return b.SetUpAt(b.GetPath(), mounterArgs)
    }
    
    // SetUpAt attaches the disk and bind mounts to the volume path.
    func (b *portworxVolumeMounter) SetUpAt(dir string, mounterArgs volume.MounterArgs) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top