Documentation ¶
Index ¶
- Constants
- func GetTestSaramaConfigMap(saramaConfig string, configuration string) *corev1.ConfigMap
- func GetTestSaramaConfigMapNamespaced(name, namespace, saramaConfig, configuration string) *corev1.ConfigMap
- func GetTestSaramaSecret(name string, username string, password string, namespace string, ...) *corev1.Secret
- func SetTestEnvironment(t *testing.T)
Constants ¶
View Source
const ( SystemNamespace = "eventing-test-ns" SecretName = "test-secret-name" NewClientId = "TestNewClientId" OldUsername = "TestOldUsername" NewUsername = "TestNewUsername" OldPassword = "TestOldPassword" NewPassword = "TestNewPassword" DispatcherReplicas = "3" DispatcherRetryInitial = "5000" DispatcherRetry = "500000" TestEKConfig = ` dispatcher: cpuLimit: 500m cpuRequest: 300m memoryLimit: 128Mi memoryRequest: 50Mi replicas: ` + DispatcherReplicas + ` retryInitialIntervalMillis: ` + DispatcherRetryInitial + ` retryTimeMillis: ` + DispatcherRetry + ` retryExponentialBackoff: true ` OldSaramaConfig = ` Net: TLS: Enable: true SASL: Enable: true Mechanism: PLAIN Version: 1 User: ` + OldUsername + ` Password: ` + OldPassword + ` Metadata: RefreshFrequency: 300000000000 ` NewSaramaConfig = ` Version: 2.3.0 Net: TLS: Enable: true SASL: Enable: true Mechanism: PLAIN Version: 1 User: ` + NewUsername + ` Password: ` + NewPassword + ` Metadata: RefreshFrequency: 300000000000 ClientID: ` + NewClientId + ` ` OldAuthNamespace = "TestOldNamespace" OldAuthPassword = "TestOldPassword" OldAuthSaslType = "TestOldAuthSaslType" OldAuthUsername = "TestOldAuthUsername" NewAuthNamespace = "TestNewNamespace" NewAuthPassword = "TestNewPassword" NewAuthSaslType = "TestNewAuthSaslType" NewAuthUsername = "TestNewAuthUsername" )
Variables ¶
This section is empty.
Functions ¶
func GetTestSaramaConfigMap ¶
Returns A ConfigMap Containing The Desired Sarama Config YAML
func GetTestSaramaConfigMapNamespaced ¶
func GetTestSaramaConfigMapNamespaced(name, namespace, saramaConfig, configuration string) *corev1.ConfigMap
Returns A ConfigMap Containing The Desired Sarama Config YAML, Name And Namespace
func GetTestSaramaSecret ¶
func GetTestSaramaSecret(name string, username string, password string, namespace string, saslType string) *corev1.Secret
Returns A Secret Containing The Desired Fields
func SetTestEnvironment ¶
Sets the environment variables that are necessary for common components
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.