summaryrefslogtreecommitdiffstats
path: root/roles/openshift_aws/README.md
blob: de73ab01d789859c0a75b106d9cc8c4ea4cba972 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
openshift_aws
==================================

Provision AWS infrastructure and instances.

This role contains many task-areas to provision resources and perform actions
against an AWS account for the purposes of dynamically building an openshift
cluster.

This role is primarily intended to be used with "import_role" and "tasks_from".

import_role can be called from the tasks section in a play.  See example
playbook below for reference.

These task-areas are:

* provision a vpc: vpc.yml
* provision elastic load balancers: elb.yml
* upload IAM ssl certificates to use with load balancers: iam_cert.yml
* provision an S3 bucket: s3.yml
* provision an instance to build an AMI: provision_instance.yml
* provision a security group in AWS: security_group.yml
* provision ssh keys and users in AWS: ssh_keys.yml
* provision an AMI in AWS: seal_ami.yml
* provision scale groups: scale_group.yml
* provision launch configs: launch_config.yml

Requirements
------------

* Ansible 2.3
* Boto

Appropriate AWS credentials and permissions are required.




Example Playbook
----------------

```yaml
- import_role:
    name: openshift_aws
    tasks_from: vpc.yml
  vars:
    openshift_aws_clusterid: test
    openshift_aws_region: us-east-1
```

License
-------

Apache License, Version 2.0

Author Information
------------------