August 2019
Beginner
608 pages
16h 7m
English
The first new Sidekiq host is the pipeline background job handler, which will get the ci_pipeline role in the Ansible definition:
resource "ansible_host" "SIDEKIQ003" { inventory_hostname = "${aws_instance.SIDEKIQ_C.private_dns}" groups = ["middleware_pipeline"] vars { ansible_user = "ubuntu" role = "ci_pipeline" ansible_ssh_private_key_file="/tmp/mykey.pem" ansible_python_interpreter="/usr/bin/python3" ansible_ssh_common_args= " -o ProxyCommand=\"ssh -o StrictHostKeyChecking=no -i /tmp/mykey.pem -W %h:%p -q ubuntu@${aws_instance.BASTIONHOST_B.public_dns}\"" proxy = "${aws_instance.BASTIONHOST_B.private_ip}" subnet = "${aws_subnet.public-frontend_az-b.cidr_block}" } }
The second new Sidekiq host is the real-time background ...
Read now
Unlock full access