Img-Dash serves as a centralized dashboard for managing VM images from AWS, Azure, and GCP. It allows users to fetch, store, and contextualize image data, keeping track of which VMs are using each image, and provides features like simple search, attach, or delete contextual information, making cloud management more intuitive.
Img-Dash is a comprehensive VM image management dashboard designed to efficiently manage and contextualize images from major cloud platforms, including AWS, Azure, and GCP. This powerful tool provides users with seamless access to their VM images, allowing for enhanced visibility and control over their infrastructure.
To ensure optimal functionality, configuration of the environment is necessary:
.env and config.json files with your specific credentials and project IDs.To configure AWS access, implement the following IAM policy for read-only access to EC2 resources:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"ec2:DescribeImages",
"ec2:DescribeInstances"
],
"Resource": "*"
}
]
}
The quick start guide outlines the essential steps to set up Img-Dash, including configuring the environment, building the application, and accessing the user interface. Users can run the application with the following command:
docker-compose up --build
After building and running the application, simply navigate to http://localhost:4173 in a web browser to begin utilizing Img-Dash for effective VM image management.
No comments yet.
Sign in to be the first to comment.