Added Cloud Installer templates

This commit is contained in:
jainish shah
2018-01-28 10:30:03 -08:00
parent 78f238bf5b
commit 6343d7a251
24 changed files with 2464 additions and 1 deletions

71
CloudFormation/README.md Normal file
View File

@@ -0,0 +1,71 @@
# CloudFormation Template For Artifactory Enterprise
### Steps to Deploy Artifactory Enterprise using CloudFormation template
1. Go to AWS Console and Select CloudFormation. Then click on Create Stack.
You will see following window.
![screenshot](images/1.png)
2. Upload Artifactory-enterprise.json (Artifactory Enterprise template) and click next.
![screenshot](images/2.png)
3. Provide required information like stack name, DBAllocatedStorage, DBInstanceClass, DBName, DBPassword,
DBUser, InstanceType, InstanceStorage, MasterKey, ArtifactoryVersion, KeyName, ArtifactoryLicense1-5, MultiAZDatabase, SSHLocation, Certificate, CertificateKey, SecondaryNodeCount. Then click next.
![screenshot](images/3.png)
4. Mark on checkbox to allow CloudFormation to create IAM user for Artifactory to access S3 bucket.
![screenshot](images/4.png)
5. Once Stack in deployed you will see Artifactory Load Balancer URL in output as showed in screenshot.
![screenshot](images/5.png)
6. Open Artifactory URL and you will be able to see Artifactory UI.
![screenshot](images/6.png)
7. Let's make sure that Artifactory is running in High Availability mode. Go to Admin -> High Availability in Artifactory UI to see this table.
![screenshot](images/8.png)
8. Now let's add 2 more nodes to Artifactory Enterprise cluster. Go to CloudFormation UI in AWS console and select newly deployed Artifactory Enterprise Stack.
Click on Action -> Update Stack.
![screenshot](images/9.png)
9. Increase SecondaryNodeCount from 0 to 2. Then update the Stack.
![screenshot](images/10.png)
10. It will take few minutes to update stack.
![screenshot](images/11.png)
11. Once Stack is updated.
![screenshot](images/12.png)
12. You will be able to see 3 nodes in High Availability table in Artifactory UI as part of Enterprise cluster.
![screenshot](images/13.png)
### Note:
1. This template only supports Artifactory version 5.8.x and above.
2. Turn off daily backups. Read Documentation provided [here](https://www.jfrog.com/confluence/display/RTF/Managing+Backups)
3. Use SSL Certificate with valid wild card to you artifactory as docker registry with subdomain method.
### Steps to setup Artifactory as secure docker registry
considering you have SSL certificate for `*.jfrog.team`
1. Pass your SSL Certificate in parameter `Certificate` as string
2. Pass your SSL Certificate Key in parameter `CertificateKey` as string
3. Set `CertificateDomain` as `jfrog.team`
4. Set `ArtifactoryServerName` as `artifactory` if you want to access artifactory with `https://artifactory.jfrog.team`
5. Create Rout53 with entry `artifactory.jfrog.team` pointing to ELB value provided as output in CloudFormation Stack.
6. Create Rout53 with entry `*.jfrog.team` pointing to ELB value provided as output in CloudFormation Stack.
7. If you have virtual docker registry with name `docker-virtual` in artifactory. You can access it via `docker-virtual.jfrog.team`
e.g ```docker pull docker-virtual.jfrog.team/nginx```
### Steps to upgrade Artifactory Version
1. Go to AWS Console and Select CloudFormation Artifactory Stack you want to upgrade. Then click on Update Stack.
2. Change Artifactory version in parameters from old version to version you want to deploy.
for e.g. 5.8.1 to 5.8.2
![screenshot](images/14.png)
3. You will see instances will get upgraded one by one. Depending on your cluster size it will take 20-30 minutes to update stack.
![screenshot](images/15.png)