mirror of
https://github.com/rancher/rke.git
synced 2025-09-26 07:25:09 +00:00
Refactor configuration defaults Add comments to config Add configurable utility images Add configurable network plugin images Add configurable kubedns images
17 lines
428 B
Go
17 lines
428 B
Go
package network
|
|
|
|
const (
|
|
EtcdEndpoints = "etcdEndpoints"
|
|
APIRoot = "apiRoot"
|
|
ClientCert = "clientCert"
|
|
ClientKey = "clientKey"
|
|
ClientCA = "clientCA"
|
|
KubeCfg = "kubeCfg"
|
|
ClusterCIDR = "clusterCIDR"
|
|
CNIImage = "cniImage"
|
|
NodeImage = "nodeImage"
|
|
ControllersImage = "controllersImage"
|
|
FlannelImage = "flannelImage"
|
|
FlannelCNIImage = "flannelCNIImage"
|
|
)
|