Documentation ¶
Overview ¶
Package nfs to manage an NFS export.
Package nfs operator to manage NFS Server.
Portion of this file is comming from https://github.com/kubernetes-incubator/external-storage/blob/master/nfs/pkg/server/server.go
Index ¶
Constants ¶
const (
NFSConfigMapPath = "/nfs-ganesha/config"
)
Variables ¶
var NFSResource = opkit.CustomResource{ Name: customResourceName, Plural: customResourceNamePlural, Group: nfsv1alpha1.CustomResourceGroup, Version: nfsv1alpha1.Version, Scope: apiextensionsv1beta1.NamespaceScoped, Kind: reflect.TypeOf(nfsv1alpha1.NFSServer{}).Name(), }
NFSResource represents the nfs export custom resource
Functions ¶
func NewNFSProvisioner ¶ added in v1.0.0
func NewNFSProvisioner(clientset kubernetes.Interface, rookClientset rookclient.Interface) *nfsProvisioner
NewNFSProvisioner returns an instance of nfsProvisioner
func Run ¶ added in v1.0.0
Run : run the NFS server in the foreground until it exits Ideally, it should never exit when run in foreground mode We force foreground to allow the provisioner process to restart the server if it crashes - daemonization prevents us from using Wait() for this purpose
Types ¶
type Controller ¶
type Controller struct {
// contains filtered or unexported fields
}
Controller represents a controller object for nfs server custom resources
func NewController ¶
func NewController(context *clusterd.Context, containerImage string) *Controller
NewController create controller for watching nfsserver custom resources created
func (*Controller) StartWatch ¶
func (c *Controller) StartWatch(namespace string, stopCh chan struct{}) error
StartWatch watches for instances of nfsserver custom resources and acts on them