feat: new client, store and docs

This commit is contained in:
aagusfernandez02
2026-07-06 11:44:56 -03:00
parent 326872d471
commit 71a6c49875
6 changed files with 587 additions and 25 deletions
+67 -17
View File
@@ -1,5 +1,16 @@
jenkins:
numExecutors: 2
nodeMonitors:
- "architecture"
- "clock"
- diskSpace:
freeSpaceThreshold: "0"
freeSpaceWarningThreshold: "0"
- "swapSpace"
- tmpSpace:
freeSpaceThreshold: "0"
freeSpaceWarningThreshold: "0"
- "responseTime"
authorizationStrategy:
loggedInUsersCanDoAnything:
allowAnonymousRead: false
@@ -10,7 +21,7 @@ jenkins:
- id: admin
password: H0l4mund0!
# Agentes permanentes (inbound/JNLP): cada SCO conecta outbound a Jenkins.
# Agentes permanentes (WebSocket): cada SCO conecta outbound a Jenkins via wss://.
# Nombre = identificador en Jenkins. Label "sco" agrupa todos los SCOs,
# luego cliente (ralph) y tienda (yabucoa / san-lorenzo / rio-grande).
nodes:
@@ -21,7 +32,8 @@ jenkins:
numExecutors: 1
retentionStrategy: "always"
launcher:
inbound: {}
inbound:
webSocket: true
- permanent:
name: "ralph-yabucoa-sco03"
labelString: "sco ralph yabucoa"
@@ -29,7 +41,8 @@ jenkins:
numExecutors: 1
retentionStrategy: "always"
launcher:
inbound: {}
inbound:
webSocket: true
- permanent:
name: "ralph-yabucoa-sco04"
labelString: "sco ralph yabucoa"
@@ -37,7 +50,8 @@ jenkins:
numExecutors: 1
retentionStrategy: "always"
launcher:
inbound: {}
inbound:
webSocket: true
- permanent:
name: "ralph-yabucoa-sco05"
labelString: "sco ralph yabucoa"
@@ -45,7 +59,8 @@ jenkins:
numExecutors: 1
retentionStrategy: "always"
launcher:
inbound: {}
inbound:
webSocket: true
- permanent:
name: "ralph-yabucoa-sco06"
labelString: "sco ralph yabucoa"
@@ -53,7 +68,8 @@ jenkins:
numExecutors: 1
retentionStrategy: "always"
launcher:
inbound: {}
inbound:
webSocket: true
- permanent:
name: "ralph-yabucoa-sco07"
labelString: "sco ralph yabucoa"
@@ -61,7 +77,8 @@ jenkins:
numExecutors: 1
retentionStrategy: "always"
launcher:
inbound: {}
inbound:
webSocket: true
- permanent:
name: "ralph-san-lorenzo-sco03"
labelString: "sco ralph san-lorenzo"
@@ -69,7 +86,8 @@ jenkins:
numExecutors: 1
retentionStrategy: "always"
launcher:
inbound: {}
inbound:
webSocket: true
- permanent:
name: "ralph-san-lorenzo-sco04"
labelString: "sco ralph san-lorenzo"
@@ -77,7 +95,8 @@ jenkins:
numExecutors: 1
retentionStrategy: "always"
launcher:
inbound: {}
inbound:
webSocket: true
- permanent:
name: "ralph-san-lorenzo-sco05"
labelString: "sco ralph san-lorenzo"
@@ -85,7 +104,8 @@ jenkins:
numExecutors: 1
retentionStrategy: "always"
launcher:
inbound: {}
inbound:
webSocket: true
- permanent:
name: "ralph-san-lorenzo-sco06"
labelString: "sco ralph san-lorenzo"
@@ -93,7 +113,8 @@ jenkins:
numExecutors: 1
retentionStrategy: "always"
launcher:
inbound: {}
inbound:
webSocket: true
- permanent:
name: "ralph-rio-grande-sco01"
labelString: "sco ralph rio-grande"
@@ -101,7 +122,8 @@ jenkins:
numExecutors: 1
retentionStrategy: "always"
launcher:
inbound: {}
inbound:
webSocket: true
- permanent:
name: "ralph-rio-grande-sco02"
labelString: "sco ralph rio-grande"
@@ -109,7 +131,8 @@ jenkins:
numExecutors: 1
retentionStrategy: "always"
launcher:
inbound: {}
inbound:
webSocket: true
- permanent:
name: "ralph-rio-grande-sco03"
labelString: "sco ralph rio-grande"
@@ -117,7 +140,8 @@ jenkins:
numExecutors: 1
retentionStrategy: "always"
launcher:
inbound: {}
inbound:
webSocket: true
- permanent:
name: "ralph-rio-grande-sco04"
labelString: "sco ralph rio-grande"
@@ -125,7 +149,8 @@ jenkins:
numExecutors: 1
retentionStrategy: "always"
launcher:
inbound: {}
inbound:
webSocket: true
- permanent:
name: "ralph-rio-grande-sco05"
labelString: "sco ralph rio-grande"
@@ -133,7 +158,8 @@ jenkins:
numExecutors: 1
retentionStrategy: "always"
launcher:
inbound: {}
inbound:
webSocket: true
- permanent:
name: "ralph-rio-grande-sco06"
labelString: "sco ralph rio-grande"
@@ -141,7 +167,21 @@ jenkins:
numExecutors: 1
retentionStrategy: "always"
launcher:
inbound: {}
inbound:
webSocket: true
- permanent:
name: "lab-oficina-sco-77"
labelString: "sco lab oficina"
remoteFS: "/opt/jenkins-agent"
numExecutors: 1
retentionStrategy: "always"
launcher:
inbound:
webSocket: true
unclassified:
location:
url: https://jenkins.laoficina1782.com/
security:
globalJobDslSecurityConfiguration:
@@ -158,3 +198,13 @@ jobs:
}
}
}
- script: |
pipelineJob('deploy-lab') {
description('Deploy de install.sh a los SCOs de Deploy Lab en la tienda seleccionada.')
definition {
cps {
script(new File('/opt/jenkins/Jenkinsfile.lab').text)
sandbox(true)
}
}
}