guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: hydra: deploy-node-129: Set default route.


From: Maxim Cournoyer
Subject: branch master updated: hydra: deploy-node-129: Set default route.
Date: Wed, 10 May 2023 14:28:16 -0400

This is an automated email from the git hooks/post-receive script.

apteryx pushed a commit to branch master
in repository maintenance.

The following commit(s) were added to refs/heads/master by this push:
     new c683686  hydra: deploy-node-129: Set default route.
c683686 is described below

commit c683686b3628838d37f0b868bb47e99e79f0fa0a
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Wed May 10 08:57:47 2023 -0400

    hydra: deploy-node-129: Set default route.
    
    Previously, the default route would be internal to the network,
    causing replies to external requests to be filtered by the firewall.
    
    * hydra/deploy-node-129.scm (node-129-os)
    [static-networking-service-type]: Set default route to 141.80.181.1.
---
 hydra/deploy-node-129.scm | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/hydra/deploy-node-129.scm b/hydra/deploy-node-129.scm
index cc70d69..a3ce0a0 100644
--- a/hydra/deploy-node-129.scm
+++ b/hydra/deploy-node-129.scm
@@ -1,12 +1,15 @@
 ;;; Commentary;
 ;;;
 ;;; This machine uses a server identical to Berlin (a Dell PowerEdge
-;;; R430 server) and serves a dual purpose:
+;;; R430 server) and serves the following purposes:
 ;;;
 ;;; 1. act as a regular Berlin build machine
 ;;;
 ;;; 2. be available as a fall-back to Berlin in case of problems
 ;;;
+;;; 3. Be used as a test bed for staging new configurations before
+;;;    they are deployed in production to Berlin.
+;;;
 ;;; TODO: Implement service redundancy with Berlin.
 ;;;
 ;;; FIXME: Re-deploying must happen from Berlin, due to bug #46760.
@@ -203,6 +206,9 @@ devices {
                                     (network-address
                                      (device "eno4")
                                      (value "141.80.167.251/26"))))
+                        (routes (list (network-route
+                                       (destination "default")
+                                       (gateway "141.80.181.1"))))
                         (provision '(backdoor))) ;required else car error
                        networks))
                 (openssh-service-type



reply via email to

[Prev in Thread] Current Thread [Next in Thread]