Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ArgoCD Integration #85

Merged
merged 56 commits into from
Oct 30, 2023
Merged

Add ArgoCD Integration #85

merged 56 commits into from
Oct 30, 2023

Conversation

PeyGis
Copy link
Contributor

@PeyGis PeyGis commented Aug 21, 2023

Description

Added support for ArgoCD projects, applications and cluster resources

What -
Why -
How -

Type of change

  • New feature (non-breaking change which adds functionality)

PeyGis and others added 30 commits July 28, 2023 12:49
Copy link
Contributor

@Tankilevitch Tankilevitch left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice job @PeyGis, added some comments ⛴️

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Redundant file

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch. I'll remove it then


<!-- towncrier release notes start -->

# Port_Ocean 0.1.0 (2023-08-21)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
# Port_Ocean 0.1.0 (2023-08-21)
# 0.1.0 (2023-08-21)

Comment on lines 50 to 59
"""
Retrieve ArgoCD resources of a specific type.

Args:
resource_type (str): The type of ArgoCD resource to retrieve.

Returns:
list[dict[str, Any]]: A list of dictionaries representing the ArgoCD resources
of the specified type.
"""
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I suggest leaving a link to the ArgoCD api reference you relied on, so when other developers jump into this code they will have the full context 😀

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, I'll add it. You can also find the Swagger API docs here

Comment on lines 70 to 73
applications = await self.get_argocd_resource(resource_type="applications")
all_deployments = []
for application in applications:
application_metadata = application.get("metadata", {})
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there any support for pagination from ArgoCD API?
Is it possible for users to have thousands of ArgoCD resources?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reading this issue, it does look like the API returns all resources. And yeah, users can have over 1000 resources

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I looked at another issue, and it appears that ArgoCD REST API is yet to support server-side pagination.

Returns:
list[dict[str, Any]]: A list of dictionaries representing ArgoCD deployments.
"""
applications = await self.get_argocd_resource(resource_type="applications")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you can use the class you declared for mapping the Object kinds

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be in a separate PR, as well as relevant changelog :)

)

response.raise_for_status()
return response.json()["items"]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think the logic of parsing the response json shouldn't be in this method but rather in the method calling it/or in the parser, we want this to be agnostic as possible so if we will need to add another api to query we won't need to change this method because the response is different

Suggested change
return response.json()["items"]
return response.json()

Comment on lines 70 to 76

# Fetch and update on-call user information for services
if data_key == "services":
service_data = await self.update_oncall_users(data, data_key)
all_data.extend(service_data)
else:
all_data.extend(data[data_key])
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why are you doing this?
This is being done on main.py

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My personal repo may have been out of sync with the current. Will update it accordingly

@danielsinai
Copy link
Collaborator

Is there any way to subscribe to events in ArgoCD so we can listen to realtime changes? @PeyGis

@sonarqubecloud
Copy link

SonarCloud Quality Gate failed.    Quality Gate failed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot E 3 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
0.0% 0.0% Duplication

idea Catch issues before they fail your Quality Gate with our IDE extension sonarlint SonarLint

Copy link
Collaborator

@yairsimantov20 yairsimantov20 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks really good

Comment on lines 16 to 20
@ocean.on_resync()
async def on_resources_resync(kind: str) -> list[dict[Any, Any]]:
logger.info(f"Listing ArgoCD resource: {kind}")
argocd_client = init_client()
return await argocd_client.get_resources(resource_kind=ObjectKind(kind))
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what happens when using a non-existing kind?

Comment on lines 4 to 7
class ObjectKind(StrEnum):
PROJECT = "project"
APPLICATION = "application"
CLUSTER = "cluster"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no need for a whole file for this
it can be placed in the client file

Comment on lines 8 to 15
def __init__(self, token: str, server_url: str):
self.token = token
self.api_url = f"{server_url}/api/v1"
self.http_client = httpx.AsyncClient(headers=self.api_auth_header)

@property
def api_auth_header(self) -> dict[str, Any]:
return {"Authorization": f"Bearer {self.token}"}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
def __init__(self, token: str, server_url: str):
self.token = token
self.api_url = f"{server_url}/api/v1"
self.http_client = httpx.AsyncClient(headers=self.api_auth_header)
@property
def api_auth_header(self) -> dict[str, Any]:
return {"Authorization": f"Bearer {self.token}"}
def __init__(self, token: str, server_url: str):
self.token = token
self.api_url = f"{server_url}/api/v1"
self.api_auth_header = {"Authorization": f"Bearer {self.token}"}
self.http_client = httpx.AsyncClient(headers=self.api_auth_header)

Copy link
Collaborator

@yairsimantov20 yairsimantov20 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🌊

@danielsinai danielsinai merged commit 4166e2c into port-labs:main Oct 30, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants