예제 #1
0
def validate_rabbitmq(service_type,
                      host,
                      rport=None,
                      ruser=None,
                      rpassword=None,
                      virtual_host=None):
    fab = fabuloso.Fabuloso()
    fab.send_rabbitMQ(service_type, host, rport, ruser, rpassword,
                      virtual_host)
예제 #2
0
def validate_database(database_type,
                      username,
                      password,
                      host,
                      port,
                      schema,
                      drop_schema=None,
                      install_database=None):
    fab = fabuloso.Fabuloso()
    fab.validate_database(database_type, username, password, host, port,
                          schema, drop_schema, install_database)
예제 #3
0
def validate_credentials(user, password, tenant, endpoint, admin_token):
    fab = fabuloso.Fabuloso()
    fab.validate_credentials(user, password, tenant, endpoint, admin_token)