From eb927dc84e57e7f9f9a7b912bd349a4dde7749a0 Mon Sep 17 00:00:00 2001
From: cdoern <cbdoer23@g.holycross.edu>
Date: Mon, 7 Jun 2021 10:07:45 -0400
Subject: Docs Switch from Query Param to Header

credentials switched from query param to header x-reg due to podman parsing the header for credentials not the query itself.

Signed-off-by: cdoern <cbdoer23@g.holycross.edu>
---
 pkg/api/server/register_images.go | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

(limited to 'pkg')

diff --git a/pkg/api/server/register_images.go b/pkg/api/server/register_images.go
index 9634bd83b..cbe75ded1 100644
--- a/pkg/api/server/register_images.go
+++ b/pkg/api/server/register_images.go
@@ -948,10 +948,6 @@ func (s *APIServer) registerImagesHandlers(r *mux.Router) error {
 	//     description: "Mandatory reference to the image (e.g., quay.io/image/name:tag)"
 	//     type: string
 	//   - in: query
-	//     name: credentials
-	//     description: "username:password for the registry"
-	//     type: string
-	//   - in: query
 	//     name: Arch
 	//     description: Pull image for the specified architecture.
 	//     type: string
@@ -972,6 +968,10 @@ func (s *APIServer) registerImagesHandlers(r *mux.Router) error {
 	//     name: allTags
 	//     description: Pull all tagged images in the repository.
 	//     type: boolean
+	//   - in: header
+	//     name: X-Registry-Auth
+	//     description: "base-64 encoded auth config. Must include the following four values: username, password, email and server address OR simply just an identity token."
+	//     type: string
 	// produces:
 	// - application/json
 	// responses:
-- 
cgit v1.2.3-54-g00ecf