Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Anything Llm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
MachineLearning
Mintplex Labs
Anything Llm
Commits
320aefb6
Commit
320aefb6
authored
1 year ago
by
timothycarambat
Browse files
Options
Downloads
Patches
Plain Diff
drop support for dockerized image AMI
parent
24ca64ce
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cloud-deployments/aws/cloudformation/create_anything_llm_instance.json
+0
-201
0 additions, 201 deletions
...ents/aws/cloudformation/create_anything_llm_instance.json
with
0 additions
and
201 deletions
cloud-deployments/aws/cloudformation/create_anything_llm_instance.json
deleted
100644 → 0
+
0
−
201
View file @
24ca64ce
{
"AWSTemplateFormatVersion"
:
"2010-09-09"
,
"Description"
:
"Create a stack that runs AnythingLLM on a single instance from the Mintplex Labs Inc maintained AWS AMI image."
,
"Parameters"
:
{
"InstanceType"
:
{
"Description"
:
"EC2 instance type"
,
"Type"
:
"String"
,
"Default"
:
"t2.small"
},
"AMIImageTemplate"
:
{
"Description"
:
"AMI Image ID to clone to a new instance. Currently the AMI is for anythingllm@0.0.1-beta"
,
"Type"
:
"String"
,
"Default"
:
"ami-0158d2dc27fba7922"
}
},
"Resources"
:
{
"AnythingLLMInstance"
:
{
"Type"
:
"AWS::EC2::Instance"
,
"Properties"
:
{
"ImageId"
:
{
"Ref"
:
"AMIImageTemplate"
},
"InstanceType"
:
{
"Ref"
:
"InstanceType"
},
"SecurityGroupIds"
:
[
{
"Ref"
:
"AnythingLLMInstanceSecurityGroup"
}
],
"UserData"
:
{
"Fn::Base64"
:
{
"Fn::Join"
:
[
""
,
[
"Content-Type: multipart/mixed; boundary=
\"
//
\"\n
"
,
"MIME-Version: 1.0
\n
"
,
"
\n
"
,
"--//
\n
"
,
"Content-Type: text/cloud-config; charset=
\"
us-ascii
\"\n
"
,
"MIME-Version: 1.0
\n
"
,
"Content-Transfer-Encoding: 7bit
\n
"
,
"Content-Disposition: attachment; filename=
\"
cloud-config.txt
\"\n
"
,
"
\n
"
,
"
\n
"
,
"#cloud-config
\n
"
,
"cloud_final_modules:
\n
"
,
"- [scripts-user, always]
\n
"
,
"
\n
"
,
"
\n
"
,
"--//
\n
"
,
"Content-Type: text/x-shellscript; charset=
\"
us-ascii
\"\n
"
,
"MIME-Version: 1.0
\n
"
,
"Content-Transfer-Encoding: 7bit
\n
"
,
"Content-Disposition: attachment; filename=
\"
userdata.txt
\"\n
"
,
"
\n
"
,
"
\n
"
,
"#!/bin/bash
\n
"
,
"# check output of userdata script with sudo tail -f /var/log/cloud-init-output.log
\n
"
,
"sudo docker-compose -f /home/ec2-user/anything-llm/docker/docker-compose.yml up -d
\n
"
,
"export ONLINE=$(curl -Is http://localhost:3001/api/ping | head -n 1|cut -d$' ' -f2)
\n
"
,
"echo
\"
Health check: $ONLINE
\"\n
"
,
"if [
\"
$ONLINE
\"
= 200 ] ; then echo
\"
Running migrations...
\"
&& curl -Is http://localhost:3001/api/migrate | head -n 1|cut -d$' ' -f2; fi
\n
"
,
"echo
\"
Setup complete! AnythingLLM instance is now online!
\"\n
"
,
"
\n
"
,
"--//--
\n
"
]
]
}
}
}
},
"AnythingLLMInstanceSecurityGroup"
:
{
"Type"
:
"AWS::EC2::SecurityGroup"
,
"Properties"
:
{
"GroupDescription"
:
"AnythingLLm Instance Security Group"
,
"SecurityGroupIngress"
:
[
{
"IpProtocol"
:
"tcp"
,
"FromPort"
:
"22"
,
"ToPort"
:
"22"
,
"CidrIp"
:
"0.0.0.0/0"
},
{
"IpProtocol"
:
"tcp"
,
"FromPort"
:
"3001"
,
"ToPort"
:
"3001"
,
"CidrIp"
:
"0.0.0.0/0"
},
{
"IpProtocol"
:
"tcp"
,
"FromPort"
:
"3001"
,
"ToPort"
:
"3001"
,
"CidrIpv6"
:
"::/0"
}
]
}
}
},
"Outputs"
:
{
"ServerIp"
:
{
"Description"
:
"IP address of the AnythingLLM instance"
,
"Value"
:
{
"Fn::GetAtt"
:
[
"AnythingLLMInstance"
,
"PublicIp"
]
}
},
"ServerURL"
:
{
"Description"
:
"URL of the AnythingLLM server"
,
"Value"
:
{
"Fn::Join"
:
[
""
,
[
"http://"
,
{
"Fn::GetAtt"
:
[
"AnythingLLMInstance"
,
"PublicIp"
]
},
":3001"
]
]
}
}
},
"Mappings"
:
{
"Region2AMI"
:
{
"ap-south-1"
:
{
"AMI"
:
"ami-0e6329e222e662a52"
,
"RootDeviceName"
:
"/dev/xvda"
},
"eu-north-1"
:
{
"AMI"
:
"ami-08c308b1bb265e927"
,
"RootDeviceName"
:
"/dev/xvda"
},
"eu-west-3"
:
{
"AMI"
:
"ami-069d1ea6bc64443f0"
,
"RootDeviceName"
:
"/dev/xvda"
},
"eu-west-2"
:
{
"AMI"
:
"ami-06a566ca43e14780d"
,
"RootDeviceName"
:
"/dev/xvda"
},
"eu-west-1"
:
{
"AMI"
:
"ami-0a8dc52684ee2fee2"
,
"RootDeviceName"
:
"/dev/xvda"
},
"ap-northeast-3"
:
{
"AMI"
:
"ami-0c8a89b455fae8513"
,
"RootDeviceName"
:
"/dev/xvda"
},
"ap-northeast-2"
:
{
"AMI"
:
"ami-0ff56409a6e8ea2a0"
,
"RootDeviceName"
:
"/dev/xvda"
},
"ap-northeast-1"
:
{
"AMI"
:
"ami-0ab0bbbd329f565e6"
,
"RootDeviceName"
:
"/dev/xvda"
},
"ca-central-1"
:
{
"AMI"
:
"ami-033c256a10931f206"
,
"RootDeviceName"
:
"/dev/xvda"
},
"sa-east-1"
:
{
"AMI"
:
"ami-0dabf4dab6b183eef"
,
"RootDeviceName"
:
"/dev/xvda"
},
"ap-southeast-1"
:
{
"AMI"
:
"ami-0dc5785603ad4ff54"
,
"RootDeviceName"
:
"/dev/xvda"
},
"ap-southeast-2"
:
{
"AMI"
:
"ami-0c5d61202c3b9c33e"
,
"RootDeviceName"
:
"/dev/xvda"
},
"eu-central-1"
:
{
"AMI"
:
"ami-004359656ecac6a95"
,
"RootDeviceName"
:
"/dev/xvda"
},
"us-east-1"
:
{
"AMI"
:
"ami-0cff7528ff583bf9a"
,
"RootDeviceName"
:
"/dev/xvda"
},
"us-east-2"
:
{
"AMI"
:
"ami-02238ac43d6385ab3"
,
"RootDeviceName"
:
"/dev/xvda"
},
"us-west-1"
:
{
"AMI"
:
"ami-01163e76c844a2129"
,
"RootDeviceName"
:
"/dev/xvda"
},
"us-west-2"
:
{
"AMI"
:
"ami-0ceecbb0f30a902a6"
,
"RootDeviceName"
:
"/dev/xvda"
}
}
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment