Mokhtar Naamani 9fd1bade66 devops: separate ansible and aws from kubernetes deployments há 3 anos atrás
..
cloudformation 9fd1bade66 devops: separate ansible and aws from kubernetes deployments há 3 anos atrás
group_vars 9fd1bade66 devops: separate ansible and aws from kubernetes deployments há 3 anos atrás
library 9fd1bade66 devops: separate ansible and aws from kubernetes deployments há 3 anos atrás
roles 9fd1bade66 devops: separate ansible and aws from kubernetes deployments há 3 anos atrás
.gitignore 9fd1bade66 devops: separate ansible and aws from kubernetes deployments há 3 anos atrás
README.md 9fd1bade66 devops: separate ansible and aws from kubernetes deployments há 3 anos atrás
ansible.cfg 9fd1bade66 devops: separate ansible and aws from kubernetes deployments há 3 anos atrás
build-arm64-playbook.yml 9fd1bade66 devops: separate ansible and aws from kubernetes deployments há 3 anos atrás
build-code.yml 9fd1bade66 devops: separate ansible and aws from kubernetes deployments há 3 anos atrás
chain-spec-pioneer.yml 9fd1bade66 devops: separate ansible and aws from kubernetes deployments há 3 anos atrás
common.sh 9fd1bade66 devops: separate ansible and aws from kubernetes deployments há 3 anos atrás
create-joystream-node-ami-playbook.yml 9fd1bade66 devops: separate ansible and aws from kubernetes deployments há 3 anos atrás
deploy-config.sample.cfg 9fd1bade66 devops: separate ansible and aws from kubernetes deployments há 3 anos atrás
deploy-infra.sh 9fd1bade66 devops: separate ansible and aws from kubernetes deployments há 3 anos atrás
deploy-single-node.sh 9fd1bade66 devops: separate ansible and aws from kubernetes deployments há 3 anos atrás
destroy-infra.sh 9fd1bade66 devops: separate ansible and aws from kubernetes deployments há 3 anos atrás
requirements.yml 9fd1bade66 devops: separate ansible and aws from kubernetes deployments há 3 anos atrás
setup-admin.yml 9fd1bade66 devops: separate ansible and aws from kubernetes deployments há 3 anos atrás
single-node-playbook.yml 9fd1bade66 devops: separate ansible and aws from kubernetes deployments há 3 anos atrás

README.md

Setup

Configuring the AWS CLI

We’re going to use the AWS CLI to access AWS resources from the command line.

Follow the official directions for your system.

Once the AWS CLI is installed, configure a profile

aws configure --profile joystream-user

Create a key pair

Change profile and region parameters according to your configuration

aws ec2 create-key-pair --key-name joystream-key --profile joystream-user --region us-east-1 --query 'KeyMaterial' --output text > joystream-key.pem

Set the permissions for the key pair

chmod 400 joystream-key.pem

Install Ansible

On Mac run the command:

  • brew install ansible

Follow the official installation guide for your system.

How to run

Copy and edit the file deploy-config.sample.cfg and update parameters like AWS_KEY_PAIR_NAME, KEY_PATH Run the deploy-infra.sh script to deploy the infrastructure

cd devops/aws
./deploy-infra.sh your-deploy-config.cfg

To tear down a network

./destroy-infra.sh your-deploy-config.cfg