Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,983 for setupCa (0.12 sec)

  1. pkg/test/framework/components/jwt/server.go

    	t.Helper()
    	s, err := New(t, ns)
    	if err != nil {
    		t.Fatal(err)
    	}
    	return s
    }
    
    // Setup is a utility function for configuring a jwt Server.
    func Setup(server *Server, ns namespace.Getter) resource.SetupFn {
    	if ns == nil {
    		ns = namespace.NilGetter
    	}
    
    	return func(ctx resource.Context) error {
    		s, err := New(ctx, ns())
    		if err != nil {
    			return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 06 18:43:28 UTC 2022
    - 1.5K 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. 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)
  4. 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)
  5. pkg/test/framework/components/namespace/namespace.go

    	var out []Instance
    	if err := ctx.GetResource(&out); err != nil {
    		return nil, err
    	}
    	return out, nil
    }
    
    // Setup is a utility function for creating a namespace in a test suite.
    func Setup(ns *Instance, cfg Config) resource.SetupFn {
    	return func(ctx resource.Context) (err error) {
    		*ns, err = New(ctx, cfg)
    		return
    	}
    }
    
    // Getter for a namespace Instance
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 18:12:14 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. pkg/test/framework/components/istio/istio.go

    	t.Helper()
    	i, err := Ingresses(ctx)
    	if err != nil {
    		t.Fatal(err)
    	}
    	return i
    }
    
    // Setup is a setup function that will deploy Istio on Kubernetes environment
    func Setup(i *Instance, cfn SetupConfigFn, ctxFns ...SetupContextFn) resource.SetupFn {
    	return func(ctx resource.Context) error {
    		cfg, err := DefaultConfig(ctx)
    		if err != nil {
    			return err
    		}
    		if cfn != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 30 17:47:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. docs/compression/README.md

     | `application/x-compress` |
     | `application/x-xz`       |
    
    All files with these extensions and mime types are excluded from compression,
    even if compression is enabled for all types.
    
    ## To test the setup
    
    To test this setup, practice put calls to the server using `mc` and use `mc ls` on
    the data directory to view the size of the object.
    
    ## Explore Further
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 11 11:55:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. pkg/volume/nfs/nfs.go

    		Managed:        false,
    		SELinuxRelabel: false,
    	}
    }
    
    // SetUp attaches the disk and bind mounts to the volume path.
    func (nfsMounter *nfsMounter) SetUp(mounterArgs volume.MounterArgs) error {
    	return nfsMounter.SetUpAt(nfsMounter.GetPath(), mounterArgs)
    }
    
    func (nfsMounter *nfsMounter) 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
    - 9.5K bytes
    - Viewed (0)
  9. docs/distributed/README.md

    **In our tests we also found ext4 does not honor POSIX O_DIRECT/Fdatasync semantics, ext4 trades performance for consistency guarantees. Please avoid ext4 in your setup.**
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. docs/distributed/DECOMMISSION.md

    ```
    
    - On baremetal setups, if you have `MINIO_VOLUMES="http://minio{1...2}/data{1...4} http://minio{3...4}/data{1...4}"`, you can remove the first argument `http://minio{1...2}/data{1...4}` to update your `MINIO_VOLUMES` setting, then restart all the servers in the setup in parallel using `systemctl restart minio`.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 11 14:59:49 UTC 2022
    - 8.3K bytes
    - Viewed (0)
Back to top