Deprecate resources_prefix and change rand_name()

Many projects are using rand_name() which is outside of tempest.lib.
The method specifies the prefix 'tempest', which is the default value
of tempest.conf, to tempest.lib's rand_name().
The prefix is useful to identify these resources are created by Tempest.
No projects change this configuration value, so this patch changes the
default value of rand_name() to 'tempest' and makes resources_prefix
option deprecated.

Change-Id: I624e2eb3954b6171fbbe00a4ed757bfac04b3eaf
diff --git a/releasenotes/notes/deprecate-resources-prefix-option-ad490c0a30a0266b.yaml b/releasenotes/notes/deprecate-resources-prefix-option-ad490c0a30a0266b.yaml
new file mode 100644
index 0000000..f679208
--- /dev/null
+++ b/releasenotes/notes/deprecate-resources-prefix-option-ad490c0a30a0266b.yaml
@@ -0,0 +1,10 @@
+---
+upgrade:
+  - The default value of rand_name()'s prefix argument is changed
+    to 'tempest' from None to identify resources are created by
+    Tempest.
+deprecations:
+  - The resources_prefix is marked as deprecated because it is
+    enough to set 'tempest' as the prefix on rand_name() to
+    ideintify resources which are created by Tempest and no
+    projects set this option on OpenStack dev community.