Added purpose tag, but not tested
This commit is contained in:
parent
48dcc88035
commit
d956f85cb5
|
@ -28,8 +28,8 @@ terraform apply
|
||||||
```
|
```
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
1. Launch os_compat_ISLAND machine and upload your binaries/update island
|
1. Launch os_compat_ISLAND machine and upload your binaries/update island. Reset island environment.
|
||||||
2. Launch/Reboot all other os_compat test machines
|
2. Launch/Reboot all other os_compat test machines (Can be filtered with tag "Puropose: os_compat_instance")
|
||||||
3. Wait until machines boot and run monkey
|
3. Wait until machines boot and run monkey
|
||||||
4. Launch `test_compatibility.py` pytest script with island ip parameter
|
4. Launch `test_compatibility.py` pytest script with island ip parameter
|
||||||
(e.g. `test_compatibility.py --island 111.111.111.111:5000`)
|
(e.g. `test_compatibility.py --island 111.111.111.111:5000`)
|
||||||
|
|
|
@ -6,6 +6,7 @@ resource "aws_instance" "os_test_machine" {
|
||||||
key_name = "os_compat"
|
key_name = "os_compat"
|
||||||
tags = {
|
tags = {
|
||||||
Name = "os_compat_${var.name}"
|
Name = "os_compat_${var.name}"
|
||||||
|
Purpose = "os_compat_instance"
|
||||||
}
|
}
|
||||||
vpc_security_group_ids = ["${data.aws_security_group.os_compat_instance.id}"]
|
vpc_security_group_ids = ["${data.aws_security_group.os_compat_instance.id}"]
|
||||||
associate_public_ip_address = true
|
associate_public_ip_address = true
|
||||||
|
|
Loading…
Reference in New Issue