Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,957 for setupCa (0.15 sec)

  1. 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)
  2. 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)
  3. docs/kms/IAM.md

    Yes, MinIO will try to transparently migrate any existing IAM data and either stores
    it in plaintext (no KMS) or re-encrypts using the KMS.
    
    > Is this change backward compatible? Will it break my setup?
    
    This change is not backward compatible for all setups. In particular, the native
    Hashicorp Vault integration - which has been deprecated already - won't be
    supported anymore. KES is now mandatory if a third-party KMS should be used.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. 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)
  5. pkg/volume/hostpath/host_path.go

    	}
    	if b.noTypeChecker {
    		return nil
    	} else {
    		return checkType(b.GetPath(), b.pathType, b.hu)
    	}
    }
    
    // SetUpAt does not make sense for host paths - probably programmer error.
    func (b *hostPathMounter) SetUpAt(dir string, mounterArgs volume.MounterArgs) error {
    	return fmt.Errorf("SetUpAt() does not make sense for host paths")
    }
    
    func (b *hostPathMounter) GetPath() string {
    	return b.path
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. pkg/volume/volume_linux_test.go

    	return l.path
    }
    
    func (l *localFakeMounter) GetAttributes() Attributes {
    	return l.attributes
    }
    
    func (l *localFakeMounter) SetUp(mounterArgs MounterArgs) error {
    	return nil
    }
    
    func (l *localFakeMounter) SetUpAt(dir string, mounterArgs MounterArgs) error {
    	return nil
    }
    
    func (l *localFakeMounter) GetMetrics() (*Metrics, error) {
    	return nil, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  7. pkg/volume/local/local.go

    		SELinuxRelabel: true,
    	}
    }
    
    // SetUp bind mounts the directory to the volume path
    func (m *localVolumeMounter) SetUp(mounterArgs volume.MounterArgs) error {
    	return m.SetUpAt(m.GetPath(), mounterArgs)
    }
    
    // SetUpAt bind mounts the directory to the volume path and sets up volume ownership
    func (m *localVolumeMounter) 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
    - 22.2K bytes
    - Viewed (0)
  8. pkg/volume/flexvolume/mounter-defaults.go

    	"k8s.io/kubernetes/pkg/volume"
    )
    
    type mounterDefaults flexVolumeMounter
    
    // SetUpAt is part of the volume.Mounter interface.
    // This implementation relies on the attacher's device mount path and does a bind mount to dir.
    func (f *mounterDefaults) SetUpAt(dir string, mounterArgs volume.MounterArgs) error {
    	klog.Warning(logPrefix(f.plugin), "using default SetUpAt to ", dir)
    
    	src, err := f.plugin.getDeviceMountPath(f.spec)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 24 15:56:30 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  9. cmd/admin-handlers_test.go

    	"github.com/minio/mux"
    )
    
    // adminErasureTestBed - encapsulates subsystems that need to be setup for
    // admin-handler unit tests.
    type adminErasureTestBed struct {
    	erasureDirs []string
    	objLayer    ObjectLayer
    	router      *mux.Router
    	done        context.CancelFunc
    }
    
    // prepareAdminErasureTestBed - helper function that setups a single-node
    // Erasure backend for admin-handler tests.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. pkg/volume/testing/testing.go

    	// TimeoutOnSetupVolumeName will cause Setup call to timeout but volume will finish mounting.
    	TimeoutOnSetupVolumeName = "timeout-setup-volume"
    	// FailOnSetupVolumeName will cause setup call to fail
    	FailOnSetupVolumeName = "fail-setup-volume"
    	//TimeoutAndFailOnSetupVolumeName will first timeout and then fail the setup
    	TimeoutAndFailOnSetupVolumeName = "timeout-and-fail-setup-volume"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top