Skip to content

Commit

Permalink
Add signingworker type
Browse files Browse the repository at this point in the history
  • Loading branch information
Rail Aliiev committed Jun 1, 2015
1 parent ac85bf0 commit ff814c0
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 0 deletions.
48 changes: 48 additions & 0 deletions configs/signingworker
@@ -0,0 +1,48 @@
{
"us-east-1": {
"type": "signing-worker",
"domain": "srv.releng.use1.mozilla.com",
"ami": "ami-58246f30",
"subnet_ids": ["subnet-957710cc"],
"security_group_ids": ["sg-cf1027ab"],
"instance_type": "t2.micro",
"distro": "centos",
"ssh_key": "aws-releng",
"use_public_ip": true,
"instance_profile_name": "signing-worker",
"device_map": {
"/dev/xvda": {
"delete_on_termination": true,
"skip_resize": true,
"volume_type": "gp2",
"instance_dev": "/dev/xvda1"
}
},
"tags": {
"moz-type": "signing-worker"
}
},
"us-west-2": {
"type": "signing-worker",
"domain": "srv.releng.usw2.mozilla.com",
"ami": "ami-eb89acdb",
"subnet_ids": ["subnet-d50cb6a2"],
"security_group_ids": ["sg-ff8b939a"],
"instance_type": "t2.micro",
"distro": "centos",
"ssh_key": "aws-releng",
"use_public_ip": true,
"instance_profile_name": "signing-worker",
"device_map": {
"/dev/xvda": {
"delete_on_termination": true,
"skip_resize": true,
"volume_type": "gp2",
"instance_dev": "/dev/xvda1"
}
},
"tags": {
"moz-type": "signing-worker"
}
}
}
14 changes: 14 additions & 0 deletions configs/signingworker.cloud-init
@@ -0,0 +1,14 @@
#cloud-config

fqdn: {fqdn}
hostname: {fqdn}
package_update: false
resize_rootfs: true
manage_etc_hosts: true
disable_root: false
ssh_pwauth: true
moz_instance_type: {moz_instance_type}
mounts: false
rsyslog:
- filename: log_aggregator_client.conf
content: "*.* @@log-aggregator.srv.releng.{region_dns_atom}.mozilla.com:1514"

0 comments on commit ff814c0

Please sign in to comment.