Skip to content

Commit

Permalink
Remove API endpoint for automatic cloud registration v1
Browse files Browse the repository at this point in the history
* Card ID: CCT-67 (main branch)
* Card ID: CCT-69 (backport)

(Cherry-picked from b70aaf8)
  • Loading branch information
m-horky authored and ptoscano committed Oct 2, 2024
1 parent 1392c4e commit aaeea0c
Showing 1 changed file with 0 additions and 28 deletions.
28 changes: 0 additions & 28 deletions src/rhsm/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -1152,34 +1152,6 @@ def shutDown(self):
def ping(self, username=None, password=None):
return self.conn.request_get("/status/")

def getJWToken(self, cloud_id, metadata, signature):
"""
When automatic registration is enabled in rhsm.conf and it was possible
to gather cloud metadata, then it is possible to try to get JSON Web Token
for automatic registration. When candlepin does not provide automatic
registration, then raise exception.
:param cloud_id: ID of cloud provider, e.g. "aws", "azure", "gcp"
:param metadata: string with base64 encoded metadata
:param signature: string with base64 encoded signature
:return: string with JWT
"""
params = {
"type": cloud_id,
"metadata": metadata,
"signature": signature
}
# "Accept" http header has to be text/plain, because candlepin return
# token as simple text and it is not wrapped in json document
headers = {
"Content-type": "application/json",
"Accept": "text/plain"
}
return self.conn.request_post(
method="/cloud/authorize",
params=params,
headers=headers
)

def getCloudJWT(self, cloud_id: str, metadata: str, signature: str) -> Dict[str, Any]:
"""Obtain cloud JWT.
Expand Down

0 comments on commit aaeea0c

Please sign in to comment.