Documentation ¶
Index ¶
- Constants
- func DeleteCluster(clustername, namespace string, osclient *oclient.Client, ...) (string, error)
- func ErrorCode(err error) int
- func ScaleCluster(name, namespace string, masters, workers int, osclient *oclient.Client, ...) error
- type ClusterConfig
- type ClusterError
- type SparkCluster
- func CreateCluster(clustername, namespace, sparkimage string, config *ClusterConfig, ...) (SparkCluster, error)
- func FindClusters(namespace string, client *kclient.Client) ([]SparkCluster, error)
- func FindSingleCluster(name, namespace string, osclient *oclient.Client, client *kclient.Client) (SparkCluster, error)
- func UpdateCluster(name, namespace string, config *ClusterConfig, osclient *oclient.Client, ...) (SparkCluster, error)
- type SparkPod
Constants ¶
View Source
const ClientOperationCode = 101
View Source
const ClusterConfigCode = 100
View Source
const ClusterIncompleteCode = 102
View Source
const ComponentExistsCode = 104
View Source
const Defaultname = "default-oshinko-cluster-config"
View Source
const ErrorWhileProcessing = "'%s', %s"
View Source
const MasterCountMustBeOne = "cluster configuration must have a masterCount of 1"
View Source
const NamedConfigDoesNotExist = "named config '%s' does not exist"
View Source
const NoCodeAvailable = 0
View Source
const NoSuchClusterCode = 103
View Source
const SentinelCountValue = -1
View Source
const WorkerCountMustBeAtLeastZero = "cluster configuration may not have a workerCount less than 0"
Variables ¶
This section is empty.
Functions ¶
func DeleteCluster ¶
func ScaleCluster ¶ added in v0.2.2
func ScaleCluster(name, namespace string, masters, workers int, osclient *oclient.Client, client *kclient.Client) error
Scale a cluster This routine supports a specific scale operation based on immediate values for master and worker counts and does not consider stored configs.
Types ¶
type ClusterConfig ¶
type ClusterConfig struct { MasterCount int WorkerCount int Name string SparkMasterConfig string SparkWorkerConfig string SparkImage string }
func GetClusterConfig ¶
func GetClusterConfig(config *ClusterConfig, cm kclient.ConfigMapsInterface) (res ClusterConfig, err error)
func GetDefaultConfig ¶
func GetDefaultConfig() ClusterConfig
This function is meant to support testability
type ClusterError ¶
func NewClusterError ¶
func NewClusterError(msg string, code int) ClusterError
func (ClusterError) Error ¶
func (e ClusterError) Error() string
type SparkCluster ¶
type SparkCluster struct { Namespace string `json:"namespace,omitempty"` Name string `json:"name,omitempty"` Href string `json:"href"` Image string `json:"image"` MasterURL string `json:"masterUrl"` MasterWebURL string `json:"masterWebUrl"` Status string `json:"status"` WorkerCount int `json:"workerCount"` MasterCount int `json:"masterCount,omitempty"` Config ClusterConfig Pods []SparkPod }
func CreateCluster ¶
func CreateCluster(clustername, namespace, sparkimage string, config *ClusterConfig, osclient *oclient.Client, client *kclient.Client) (SparkCluster, error)
Create a cluster and return the representation
func FindClusters ¶
func FindClusters(namespace string, client *kclient.Client) ([]SparkCluster, error)
Find all clusters and return their representation
func FindSingleCluster ¶
func FindSingleCluster(name, namespace string, osclient *oclient.Client, client *kclient.Client) (SparkCluster, error)
Find a cluster and return its representation
func UpdateCluster ¶
func UpdateCluster(name, namespace string, config *ClusterConfig, osclient *oclient.Client, client *kclient.Client) (SparkCluster, error)
Update a cluster and return the new representation This routine supports the same stored config semantics as used in cluster creation but at this point only allows updating the master and worker counts.
Click to show internal directories.
Click to hide internal directories.