Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RadosUser (0.49 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    	out.CephMonitors = *(*[]string)(unsafe.Pointer(&in.CephMonitors))
    	out.RBDImage = in.RBDImage
    	out.FSType = in.FSType
    	out.RBDPool = in.RBDPool
    	out.RadosUser = in.RadosUser
    	out.Keyring = in.Keyring
    	out.SecretRef = (*core.SecretReference)(unsafe.Pointer(in.SecretRef))
    	out.ReadOnly = in.ReadOnly
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	// +optional
    	FSType string
    	// Optional: RadosPool is the rados pool name,default is rbd
    	// +optional
    	RBDPool string
    	// Optional: RBDUser is the rados user name, default is admin
    	// +optional
    	RadosUser string
    	// Optional: Keyring is the path to key ring for RBDUser, default is /etc/ceph/keyring
    	// +optional
    	Keyring string
    	// Optional: SecretRef is name of the authentication secret for RBDUser, default is nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	RBDPool string `json:"pool,omitempty" protobuf:"bytes,4,opt,name=pool"`
    	// user is the rados user name.
    	// Default is admin.
    	// More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it
    	// +optional
    	RadosUser string `json:"user,omitempty" protobuf:"bytes,5,opt,name=user"`
    	// keyring is the path to key ring for RBDUser.
    	// Default is /etc/ceph/keyring.
    	// More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top