5b066c7
diff --git a/manifests/db/mysql.pp b/manifests/db/mysql.pp
5b066c7
index 3cc850c..8654307 100644
5b066c7
--- a/manifests/db/mysql.pp
5b066c7
+++ b/manifests/db/mysql.pp
5b066c7
@@ -5,7 +5,7 @@ class cinder::db::mysql (
5b066c7
   $user          = 'cinder',
5b066c7
   $host          = '127.0.0.1',
5b066c7
   $allowed_hosts = undef,
5b066c7
-  $charset       = 'latin1',
5b066c7
+  $charset       = 'utf8',
5b066c7
   $cluster_id    = 'localzone'
5b066c7
 ) {
5b066c7
 
5b066c7
diff --git a/spec/classes/cinder_db_mysql_spec.rb b/spec/classes/cinder_db_mysql_spec.rb
5b066c7
index a35b16c..9227986 100644
5b066c7
--- a/spec/classes/cinder_db_mysql_spec.rb
5b066c7
+++ b/spec/classes/cinder_db_mysql_spec.rb
5b066c7
@@ -22,7 +22,7 @@ describe 'cinder::db::mysql' do
5b066c7
       :user         => 'cinder',
5b066c7
       :password     => 'pw',
5b066c7
       :host         => '127.0.0.1',
5b066c7
-      :charset      => 'latin1'
5b066c7
+      :charset      => 'utf8'
5b066c7
      ) }
5b066c7
   end
5b066c7
   describe "overriding allowed_hosts param to array" do