--- "Basic test for aliases": - skip: version: "0 - 0.90.0" reason: "Exists alias not supported before 0.90.1" - do: indices.create: index: test_index - do: indices.exists_alias: name: test_alias - is_false: '' - do: indices.update_aliases: body: actions: - add: index: test_index alias: test_alias routing: routing_value - is_true: ok - do: indices.exists_alias: name: test_alias - is_true: '' - do: indices.get_alias: index: test_index - match: {test_index.aliases.test_alias: {'index_routing': 'routing_value', 'search_routing': 'routing_value'}}