2.2. Red Hat Quay API を使用したユーザーアカウントの作成
API を使用して Red Hat Quay リポジトリーの新しいユーザーを作成するには、次の手順に従います。
前提条件
- スーパーユーザーとして Red Hat Quay デプロイメントにログインしている。
- OAuth アクセストークンを作成 した。
-
config.yaml
ファイルでBROWSER_API_CALLS_XHR_ONLY: false
を設定した。
手順
次のコマンドを入力し、
POST /api/v1/superuser/users/
エンドポイントを使用して新しいユーザーを作成します。$ curl -X POST -H "Authorization: Bearer <bearer_token>" -H "Content-Type: application/json" -d '{ "username": "newuser", "email": "newuser@example.com" }' "https://<quay-server.example.com>/api/v1/superuser/users/"
出力例
{"username": "newuser", "email": "newuser@example.com", "password": "IJWZ8TIY301KPFOW3WEUJEVZ3JR11CY1", "encrypted_password": "9Q36xF54YEOLjetayC0NBaIKgcFFmIHsS3xTZDLzZSrhTBkxUc9FDwUKfnxLWhco6oBJV1NDBjoBcDGmsZMYPt1dSA4yWpPe/JKY9pnDcsw="}
Red Hat Quay レジストリーエンドポイント (例:
quay-server.example.com
) に移動し、API 呼び出しから生成されたユーザー名とパスワードを使用してログインします。この場合、ユーザー名はnewuser
、パスワードはIJWZ8TIY301KPFOW3WEUJEVZ3JR11CY1
です。または、CLI を使用してレジストリーにログインすることもできます。以下に例を示します。$ podman login <quay-server.example.com>
出力例
username: newuser password: IJWZ8TIY301KPFOW3WEUJEVZ3JR11CY1
任意。
GET /api/v1/superuser/users/
エンドポイントを使用して、スーパーユーザーを含むすべてのユーザーのリストを取得できます。$ curl -X GET -H "Authorization: Bearer <bearer_token>" "https://<quay-server.example.com>/api/v1/superuser/users/"
出力例
{"users": [{"kind": "user", "name": "quayadmin", "username": "quayadmin", "email": "quay@quay.com", "verified": true, "avatar": {"name": "quayadmin", "hash": "b28d563a6dc76b4431fc7b0524bbff6b810387dac86d9303874871839859c7cc", "color": "#17becf", "kind": "user"}, "super_user": true, "enabled": true}, {"kind": "user", "name": "newuser", "username": "newuser", "email": "newuser@example.com", "verified": true, "avatar": {"name": "newuser", "hash": "f338a2c83bfdde84abe2d3348994d70c34185a234cfbf32f9e323e3578e7e771", "color": "#9edae5", "kind": "user"}, "super_user": false, "enabled": true}]}