Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 deletions ansible/inventory.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
hosts:

- infra:
- azure:
ubuntu2404-x64-1: {ip: 172.203.217.211, alias: rsync, user: iojs}

- digitalocean:
ubuntu1604-x64-1: {ip: 138.197.224.240, alias: www}
Expand All @@ -20,10 +22,6 @@ hosts:
ubuntu2004-x64-1: {ip: 169.60.150.91, alias: ansible}
ubuntu2404-x64-1: {ip: 169.61.75.62, alias: ci-release}

- joyent:
debian10-x64-1: {ip: 147.28.162.110, alias: grafana}
ubuntu1604-x64-1: {ip: 147.28.162.105, alias: unencrypted}

- mnx:
ubuntu2204-x64-1: {ip: 67.158.54.181, alias: backup-2}

Expand Down Expand Up @@ -52,9 +50,6 @@ hosts:
- iinthecloud:
ibmi73-ppc64_be-1: {ip: 65.183.160.62, user: nodejs}

- joyent:
ubuntu1804_docker-x64-1: {ip: 147.28.162.104, user: ubuntu}

- marist:
zos24-s390x-1: {ip: 148.100.36.157, user: unix1}

Expand Down Expand Up @@ -149,9 +144,6 @@ hosts:
ubuntu2204-x64-3: {ip: 52.117.26.14, alias: jenkins-workspace-6}
ubuntu2204_docker-x64-1: {ip: 52.117.26.9}

- equinix_mnx:
ubuntu1804-x64-1: {ip: 147.28.162.99, user: ubuntu}
Comment on lines -152 to -153

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This isn't the old unencrypted server -- that's the one under infra->joyent with the unencrypted alias.


- hetzner:
ubuntu2204-x64-1:
ip: 37.27.104.214
Expand Down
14 changes: 14 additions & 0 deletions ansible/playbooks/create-rsync-unencrypted.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---

#
# sets up the host that serves unencrypted and rsync endpoints
#
# This is very incomplete, and mostly just for bootstrapping the box.
# The rsync config, and rsync mirror service are not configured with ansible. (and hopefully wont have to be)

- hosts: infra-azure-ubuntu2404-x64-1
roles:
- bootstrap
- package-upgrade
- baselayout
- { role: nginx, sites: [ 'nodejs.org','unencrypted' ] }
Loading