diff --git a/services/jenkins/configmap-jcasc.yaml b/services/jenkins/configmap-jcasc.yaml index 0da9ebc3..d8f11f4c 100644 --- a/services/jenkins/configmap-jcasc.yaml +++ b/services/jenkins/configmap-jcasc.yaml @@ -193,6 +193,32 @@ data: } } } + pipelineJob('pegasus') { + properties { + pipelineTriggers { + triggers { + scmTrigger { + scmpoll_spec('H/5 * * * *') + ignorePostCommitHooks(false) + } + } + } + } + definition { + cpsScm { + scm { + git { + remote { + url('https://scm.bstein.dev/bstein/pegasus.git') + credentials('gitea-pat') + } + branches('*/main') + } + } + scriptPath('Jenkinsfile') + } + } + } pipelineJob('data-prepper') { properties { pipelineTriggers { diff --git a/services/monitoring/scripts/platform_quality_suite_probe.sh b/services/monitoring/scripts/platform_quality_suite_probe.sh index 0991d676..883b823f 100755 --- a/services/monitoring/scripts/platform_quality_suite_probe.sh +++ b/services/monitoring/scripts/platform_quality_suite_probe.sh @@ -73,7 +73,7 @@ check_http_suite() { failures=0 check_http_suite "atlasbot" "http://atlasbot.comms.svc.cluster.local:8090/health" "200" '"status": "ok"' || failures=$((failures + 1)) -check_http_suite "pegasus" "http://pegasus.jellyfin.svc.cluster.local/healthz" "200" || failures=$((failures + 1)) +check_http_suite "pegasus-health" "http://pegasus.jellyfin.svc.cluster.local/healthz" "200" || failures=$((failures + 1)) check_http_suite "bstein-home" "http://bstein-dev-home-backend.bstein-dev-home.svc.cluster.local/api/healthz" "200" || failures=$((failures + 1)) if [ "${failures}" -gt 0 ]; then