mirror of
https://github.com/TECHNOFAB11/zfs-localpv.git
synced 2025-12-11 22:10:11 +01:00
52 lines
1.4 KiB
Go
52 lines
1.4 KiB
Go
|
|
/*
|
||
|
|
Copyright © 2019 The OpenEBS Authors
|
||
|
|
|
||
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
|
you may not use this file except in compliance with the License.
|
||
|
|
You may obtain a copy of the License at
|
||
|
|
|
||
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
|
||
|
|
Unless required by applicable law or agreed to in writing, software
|
||
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
|
See the License for the specific language governing permissions and
|
||
|
|
limitations under the License.
|
||
|
|
*/
|
||
|
|
|
||
|
|
package config
|
||
|
|
|
||
|
|
// Config struct fills the parameters of request or user input
|
||
|
|
type Config struct {
|
||
|
|
// DriverName to be registered at CSI
|
||
|
|
DriverName string
|
||
|
|
|
||
|
|
// PluginType flags if the driver is
|
||
|
|
// it is a node plugin or controller
|
||
|
|
// plugin
|
||
|
|
PluginType string
|
||
|
|
|
||
|
|
// Version of the CSI controller/node driver
|
||
|
|
Version string
|
||
|
|
|
||
|
|
// Endpoint on which requests are made by kubelet
|
||
|
|
// or external provisioner
|
||
|
|
//
|
||
|
|
// NOTE:
|
||
|
|
// - Controller/node plugin will listen on this
|
||
|
|
// - This will be a unix based socket
|
||
|
|
Endpoint string
|
||
|
|
|
||
|
|
// NodeID helps in differentiating the nodes on
|
||
|
|
// which node drivers are running. This is useful
|
||
|
|
// in case of topologies and publishing or
|
||
|
|
// unpublishing volumes on nodes
|
||
|
|
NodeID string
|
||
|
|
}
|
||
|
|
|
||
|
|
// Default returns a new instance of config
|
||
|
|
// required to initialize a driver instance
|
||
|
|
func Default() *Config {
|
||
|
|
return &Config{}
|
||
|
|
}
|