Documentation ¶
Index ¶
- Constants
- func CompareConfigMap(cm1 *corev1.ConfigMap, cm2 *corev1.ConfigMap) bool
- func CompareVersions(v1, v2, operator string) (bool, error)
- func ContainsString(slice []string, str string) bool
- func ContainsVersion(list []string, version string) bool
- func ControllerReadinessCheck(port int32, authflag bool) []string
- func DeleteAllZnodes(zkUri string, clusterName string) (err error)
- func DownwardAPIEnv() []corev1.EnvVar
- func GenerateJVMOption(k, v string) string
- func GetPodVersion(pod *v1.Pod) string
- func HealthcheckCommand(port int32) []string
- func IsOrphan(k8sObjectName string, replicas int32) bool
- func IsPodFaulty(pod *corev1.Pod) (bool, error)
- func IsPodReady(pod *corev1.Pod) bool
- func IsVersionBelow07(ver string) bool
- func ListSubTreeBFS(conn *zk.Conn, root string) (*list.List, error)
- func Min(x, y int32) int32
- func NormalizeVersion(version string) (string, error)
- func OverrideDefaultJVMOptions(defaultOpts []string, customOpts []string) []string
- func PodAntiAffinity(component string, clusterName string) *corev1.Affinity
- func RemoveString(slice []string, str string) (result []string)
- func UpdateOneJVMOption(arg string, om *OrderedMap)
- type OrderedMap
Constants ¶
const ( // Set in https://github.com/pravega/pravega/blob/master/docker/bookkeeper/entrypoint.sh#L21 PravegaPath = "pravega" ZkFinalizer = "cleanUpZookeeper" )
const (
MajorMinorVersionRegexp string = `^v?(?P<Version>[0-9]+\.[0-9]+\.[0-9]+)`
)
Variables ¶
This section is empty.
Functions ¶
func CompareConfigMap ¶ added in v0.5.2
func CompareVersions ¶
func ContainsString ¶
func ContainsVersion ¶
func ControllerReadinessCheck ¶ added in v0.5.1
This function check for the readiness of the controller in the following cases 1) Auth and TLS Enabled- in this case, we check if the controller is properly enabled with authentication or not and we do a get on controller and with dummy credentials(testtls:testtls) and the controller returns 401 error in this case if it's correctly configured 2) Auth Enabled and TLS Disabled- in this case, we check if the controller is properly enabled with authentication or not and we do a get on controller and with dummy credentials(testtls:testtls) and the controller returns 401 error in this case if it's correctly configured 3) Auth Disabled and TLS Enabled- in this case, we check if the controller can create scopes or not by checking if _system scope is present or not 4) Auth and TLS Disabled- in this case, we check if the controller can create scopes or not by checking if _system scope is present or not
func DeleteAllZnodes ¶
Delete all znodes related to a specific Pravega cluster
func DownwardAPIEnv ¶
func GenerateJVMOption ¶ added in v0.4.2
Concatenate the key value pair to be a JVM option string.
func GetPodVersion ¶
func HealthcheckCommand ¶
func IsPodReady ¶
func IsVersionBelow07 ¶ added in v0.5.0
function to check if the version is below 0.7 or not
func ListSubTreeBFS ¶
Construct a BFS tree
func NormalizeVersion ¶
func OverrideDefaultJVMOptions ¶ added in v0.4.2
This method will override the default JVM options with user provided custom options
func RemoveString ¶
func UpdateOneJVMOption ¶ added in v0.4.2
func UpdateOneJVMOption(arg string, om *OrderedMap)
This method will parse the JVM options into a key value pair and store it in the OrderedMap
Types ¶
type OrderedMap ¶ added in v0.4.2
type OrderedMap struct {
// contains filtered or unexported fields
}
OrderedMap is a map that has insertion order when iterating. The iteration of map in GO is in random order by default.