]> git.apps.os.sepia.ceph.com Git - teuthology.git/commitdiff
Specify PostgreSQL v14 to avoid permission errors. 1793/head
authorYuji Ito <llamerada.jp@gmail.com>
Tue, 18 Oct 2022 04:10:54 +0000 (04:10 +0000)
committerYuji Ito <llamerada.jp@gmail.com>
Tue, 18 Oct 2022 04:24:23 +0000 (04:24 +0000)
PostgreSQL v15  has a notable change that revokes the CREATE permission
from users except a database owner. So we can not execute paddles using
it. As a workaround, I specify PostgreSQL version.

ref: https://www.postgresql.org/about/news/postgresql-15-released-2526/

Signed-off-by: Yuji Ito <llamerada.jp@gmail.com>
docs/docker-compose/docker-compose.yml

index 4276fc456c3f4011d3d8f9db63465768cac159c6..f64d17a546d8a8377d360f9bfabb54b7b08b8b2d 100644 (file)
@@ -2,7 +2,7 @@ version: '3.8'
 
 services:
   postgres:
-    image: postgres:latest
+    image: postgres:14
     healthcheck:
       test: [ "CMD", "pg_isready", "-q", "-d", "paddles", "-U", "admin" ]
       timeout: 5s