From 7fd29a2fcae1a9929e229a4581341e7407c33c52 Mon Sep 17 00:00:00 2001 From: Jeff Takaki Date: Wed, 14 Jun 2023 13:58:16 -0500 Subject: [PATCH 01/49] Fix set-output GHA deprecation warning in build-client-container.yml --- .github/workflows/build-client-container.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-client-container.yml b/.github/workflows/build-client-container.yml index c582a6dc3..447f12852 100644 --- a/.github/workflows/build-client-container.yml +++ b/.github/workflows/build-client-container.yml @@ -19,7 +19,7 @@ jobs: steps: - name: make date tag id: mkdatetag - run: echo "::set-output name=dtag::$(date +%Y%m%d-%H%M)" + run: echo “dtag=$(date +%Y%m%d-%H%M)” >> $GITHUB_OUTPUT build: runs-on: ubuntu-latest @@ -43,7 +43,7 @@ jobs: tag_list+=($registry/$docker_repo:release-$TIMESTAMP) done IFS=, - echo "::set-output name=taglist::${tag_list[*]}" + echo “taglist=${tag_list[*]}” >> $GITHUB_OUTPUT - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1 From f14ff924d67e2d6aa3182d75b7673090de55be3e Mon Sep 17 00:00:00 2001 From: Jeff Takaki Date: Wed, 14 Jun 2023 14:01:11 -0500 Subject: [PATCH 02/49] Fix set-output GHA deprecation warning in build-sw-container.yml --- .github/workflows/build-client-container.yml | 4 ++-- .github/workflows/build-sw-container.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-client-container.yml b/.github/workflows/build-client-container.yml index 447f12852..58b275387 100644 --- a/.github/workflows/build-client-container.yml +++ b/.github/workflows/build-client-container.yml @@ -19,7 +19,7 @@ jobs: steps: - name: make date tag id: mkdatetag - run: echo “dtag=$(date +%Y%m%d-%H%M)” >> $GITHUB_OUTPUT + run: echo "dtag=$(date +%Y%m%d-%H%M)" >> $GITHUB_OUTPUT build: runs-on: ubuntu-latest @@ -43,7 +43,7 @@ jobs: tag_list+=($registry/$docker_repo:release-$TIMESTAMP) done IFS=, - echo “taglist=${tag_list[*]}” >> $GITHUB_OUTPUT + echo "taglist=${tag_list[*]}" >> $GITHUB_OUTPUT - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1 diff --git a/.github/workflows/build-sw-container.yml b/.github/workflows/build-sw-container.yml index a32327a48..d50f0d107 100644 --- a/.github/workflows/build-sw-container.yml +++ b/.github/workflows/build-sw-container.yml @@ -28,7 +28,7 @@ jobs: # This causes the tag_list array to be comma-separated below, # which is required for build-push-action IFS=, - echo "::set-output name=taglist::${tag_list[*]}" + echo "taglist=${tag_list[*]}" >> $GITHUB_OUTPUT - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1 From e49bf168a6815d0ad5aabb1a8ef7d42a331eb8a8 Mon Sep 17 00:00:00 2001 From: Jeff Takaki Date: Tue, 20 Jun 2023 09:34:47 -0500 Subject: [PATCH 03/49] Fix deprecated Node.js 12 actions with update to Node.js 16 in validate-code.yml --- .github/workflows/validate-code.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/validate-code.yml b/.github/workflows/validate-code.yml index b1c384a31..a21c49284 100644 --- a/.github/workflows/validate-code.yml +++ b/.github/workflows/validate-code.yml @@ -6,9 +6,9 @@ jobs: name: Validate Topology code runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: 3.9.15 - name: Install packages From b4705411320715ff0b36afdc8df0e34035e3c1e6 Mon Sep 17 00:00:00 2001 From: Jeff Takaki Date: Tue, 20 Jun 2023 09:37:20 -0500 Subject: [PATCH 04/49] Fix deprecated Node.js 12 actions with update to Node.js 16 in build-client-container.yml --- .github/workflows/build-client-container.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-client-container.yml b/.github/workflows/build-client-container.yml index 58b275387..a9fa60524 100644 --- a/.github/workflows/build-client-container.yml +++ b/.github/workflows/build-client-container.yml @@ -29,7 +29,7 @@ jobs: fail-fast: False steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Generate tag list id: generate-tag-list @@ -46,23 +46,23 @@ jobs: echo "taglist=${tag_list[*]}" >> $GITHUB_OUTPUT - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 + uses: docker/setup-buildx-action@v2.7.0 - name: Log in to Docker Hub - uses: docker/login-action@v1 + uses: docker/login-action@v2.2.0 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Log in to OSG Harbor - uses: docker/login-action@v1 + uses: docker/login-action@v2.2.0 with: registry: hub.opensciencegrid.org username: ${{ secrets.OSG_HARBOR_ROBOT_USER }} password: ${{ secrets.OSG_HARBOR_ROBOT_PASSWORD }} - name: Build and push Client Docker images - uses: docker/build-push-action@v2.2.0 + uses: docker/build-push-action@v4 with: push: true tags: "${{ steps.generate-tag-list.outputs.taglist }}" From 06cf731a05e2775e35bc799816db9ee67af20146 Mon Sep 17 00:00:00 2001 From: Jeff Takaki Date: Tue, 20 Jun 2023 09:40:10 -0500 Subject: [PATCH 05/49] Fix deprecated Node.js 12 actions with update to Node.js 16 in validate-caches.yml --- .github/workflows/validate-caches.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/validate-caches.yml b/.github/workflows/validate-caches.yml index 873d9be3d..24f45d8da 100644 --- a/.github/workflows/validate-caches.yml +++ b/.github/workflows/validate-caches.yml @@ -10,9 +10,9 @@ jobs: if: startsWith(github.repository, 'opensciencegrid/') runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: 3.9.15 - name: Compare StashCache config lists From 1aabd1abc5124eb4964834690622a15ecbaff23b Mon Sep 17 00:00:00 2001 From: Jeff Takaki Date: Tue, 20 Jun 2023 09:44:34 -0500 Subject: [PATCH 06/49] Fix deprecated Node.js 12 actions with update to Node.js 16 in build-sw-container.yml --- .github/workflows/build-sw-container.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-sw-container.yml b/.github/workflows/build-sw-container.yml index d50f0d107..47a55cc42 100644 --- a/.github/workflows/build-sw-container.yml +++ b/.github/workflows/build-sw-container.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest if: startsWith(github.repository, 'opensciencegrid/') steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Generate tag list id: generate-tag-list @@ -31,23 +31,23 @@ jobs: echo "taglist=${tag_list[*]}" >> $GITHUB_OUTPUT - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 + uses: docker/setup-buildx-action@v2.7.0 - name: Log in to Docker Hub - uses: docker/login-action@v1 + uses: docker/login-action@v2.2.0 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Log in to OSG Harbor - uses: docker/login-action@v1 + uses: docker/login-action@v2.2.0 with: registry: hub.opensciencegrid.org username: ${{ secrets.OSG_HARBOR_ROBOT_USER }} password: ${{ secrets.OSG_HARBOR_ROBOT_PASSWORD }} - name: Build and push Docker images - uses: docker/build-push-action@v2.2.0 + uses: docker/build-push-action@v4 with: context: . push: true From 526b8a8466e42e94ede54d44775c797288e4c730 Mon Sep 17 00:00:00 2001 From: Jeff Takaki Date: Tue, 20 Jun 2023 09:46:35 -0500 Subject: [PATCH 07/49] Fix deprecated Node.js 12 actions with update to Node.js 16 in validate-data.yml --- .github/workflows/validate-data.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/validate-data.yml b/.github/workflows/validate-data.yml index 006996364..d28b8db3c 100644 --- a/.github/workflows/validate-data.yml +++ b/.github/workflows/validate-data.yml @@ -7,9 +7,9 @@ jobs: name: Validate Topology data runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: 3.9.15 - name: Install packages From 74a6995cb5803ca9429037194986b03ad9792988 Mon Sep 17 00:00:00 2001 From: Sakib Rahman Date: Wed, 2 Aug 2023 13:27:29 -0500 Subject: [PATCH 08/49] Create MOLLER.yaml Creating file for the MOLLER experiment at Jefferson Lab --- MOLLER.yaml | 119 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 119 insertions(+) create mode 100644 MOLLER.yaml diff --git a/MOLLER.yaml b/MOLLER.yaml new file mode 100644 index 000000000..96610eb1a --- /dev/null +++ b/MOLLER.yaml @@ -0,0 +1,119 @@ +# Name is the short name of the VO +Name: MOLLER +# LongName is the full name of the VO +LongName: The Measurement of a Lepton-Lepton Electroweak Reaction +# AppDescription is a brief description of the VO +AppDescription: MOLLER Simulation and Data Analysis +# Community is the description of the community the VO belongs to +Community: The MOLLER Collaboration + +CertificateOnly: false + +# If you have an up-to-date local git clone, fill ID with the output from `bin/next_virtual_organization_id` +# Otherwise, leave it blank and we will fill in the appropriate value for you. +ID: + +# Contacts contain information about people to contact regarding this VO. +# The "ID" is a hash of their email address available at https://topology.opensciencegrid.org/miscuser/xml +# If you cannot find the contact in the above XML, please register the contact: +# https://opensciencegrid.org/docs/common/registration/#registering-contacts +Contacts: + # Administrative Contact is a list of people to contact regarding administrative issues + Administrative Contact: + - ID: + Name: + # - ... + + # Security Contact is a list of people to contact regarding security issues + Security Contact: + - ID: + Name: + # - ... + + ### Registration Authority (optional) is a list of people to contact regarding registration issues + # Registration Authority: + # - ID: + # Name: + # - ... + + ### VO Manager (optional) is the list of people who manage this VO + # VO Manager: + # - ID: + # Name: + # - ... + +### Credentials (optional) define mappings of auth methods to Unix users for this VO +# Credentials: +##### TokenIssuers (optional) is a list of mappings for SciTokens issuers +# # TokenIssuers: +# ### URL is the https URL of your scitokens issuer, e.g. https://scitokens.org/ +# ### DefaultUnixUser is a username that jobs with tokens issued by this issuer should map to +# ### Description (optional) is human-readable text describing the mapping +# ### Subject (optional) is a token subject to restrict this mapping to +# # - URL: +# # DefaultUnixUser: +# # Description: +# # Subject: + +FieldsOfScience: + + # PrimaryFields are the fields of science this VO mostly deals with + PrimaryFields: + - Particle Physics + + ### SecondaryFields (optional) are fields of science this VO occasionally deals with + # SecondaryFields: + # - + # - ... + +# PrimaryURL is for general information about the VO +PrimaryURL: https://moller.jlab.org/moller_root/ +# PurposeURL explains the VO's purpose +PurposeURL: https://moller.jlab.org/moller_root/ +# SupportURL is for support issues +SupportURL: https://moller.jlab.org/wiki/index.php/Main_Page + +### ReportingGroups (optional) is a list of groups this VO reports to +# ReportingGroups: +# - +# - ... + +### OASIS (optional) is information about OASIS usage by the VO +# OASIS: +##### UseOASIS is true if this VO uses space on OASIS +# UseOASIS: true +# +####### Managers (optional) are one or more people with manager access to this VO's OASIS space +# # Managers: +# # - Name: +# # # DNs are one or more DNs for this manager's cert(s) +# # DNs: +# # - +# # - ... +# # ... +# +####### OASISRepoURLs (optional) are one or more URLs for OASIS repositories +####### owned by this VO (https://opensciencegrid.org/docs/data/external-oasis-repos/) +# # OASISRepoURLs: +# # - +# # - ... + +### DataFederations (optional) is information about data federations that the VO is part of +### This template is for the StashCache data federation; for instructions, +### see the documentation at https://opensciencegrid.org/docs/data/stashcache/vo-data/ +# DataFederations: +# StashCache: +# Namespaces: +# - Path: //PUBLIC: +# Authorizations: +# - PUBLIC +# AllowedOrigins: +# - +# - ... +### For AllowedCaches, if you only have public data, use: +# AllowedCaches: +# - ANY +### otherwise use: +# AllowedCaches: +# - +# - ... From d6bcc56474de6174beef89bef15e1870b06a49a6 Mon Sep 17 00:00:00 2001 From: Sakib Rahman Date: Thu, 10 Aug 2023 10:57:32 -0500 Subject: [PATCH 09/49] Rename MOLLER.yaml to virtual-organizations/MOLLER.yaml Move to virtual-organizations subdirectory --- MOLLER.yaml => virtual-organizations/MOLLER.yaml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename MOLLER.yaml => virtual-organizations/MOLLER.yaml (100%) diff --git a/MOLLER.yaml b/virtual-organizations/MOLLER.yaml similarity index 100% rename from MOLLER.yaml rename to virtual-organizations/MOLLER.yaml From 565576213cc63fa1f9bc24293aef3d5984b9df57 Mon Sep 17 00:00:00 2001 From: Sean Dobbs Date: Tue, 15 Aug 2023 12:07:27 -0400 Subject: [PATCH 10/49] Update OSG_US_FSU_HNPGRID.yaml Adding new OSDF origin server for FSU-HNPGRID --- .../FSU_HNPGRID/OSG_US_FSU_HNPGRID.yaml | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/topology/Florida State University/FSU_HNPGRID/OSG_US_FSU_HNPGRID.yaml b/topology/Florida State University/FSU_HNPGRID/OSG_US_FSU_HNPGRID.yaml index d83d34ecb..c50d10c85 100644 --- a/topology/Florida State University/FSU_HNPGRID/OSG_US_FSU_HNPGRID.yaml +++ b/topology/Florida State University/FSU_HNPGRID/OSG_US_FSU_HNPGRID.yaml @@ -52,4 +52,29 @@ Resources: hidden: false VOOwnership: Gluex: 100 + FSU-HNPGRID-OSDF-Origin: + Active: true + ContactLists: + Administrative Contact: + Primary: + ID: 73ed2d273dace60d6e6ff5baabeb8755624001bd + Name: Sean Dobbs + Security Contact: + Primary: + ID: 73ed2d273dace60d6e6ff5baabeb8755624001bd + Name: Sean Dobbs + Site Contact: + Primary: + ID: 73ed2d273dace60d6e6ff5baabeb8755624001bd + Name: Sean Dobbs + Description: OSDF Origin server for FSU-HNPGRID + FQDN: npgrid.fsu.edu + ID: + Services: + XRootD origin server: + Description: OSDF Origin server for FSU-HNPGRID + Details: + hidden: false + VOOwnership: + Gluex: 100 SupportCenter: UChicago From 49c278b464657c5ca5ae9b481e50514b92fc0285 Mon Sep 17 00:00:00 2001 From: Showmic Islam <57932760+showmic09@users.noreply.github.com> Date: Wed, 16 Aug 2023 09:02:23 -0500 Subject: [PATCH 11/49] Create UNL_Hebets.yaml --- projects/UNL_Hebets.yaml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 projects/UNL_Hebets.yaml diff --git a/projects/UNL_Hebets.yaml b/projects/UNL_Hebets.yaml new file mode 100644 index 000000000..6bd82256c --- /dev/null +++ b/projects/UNL_Hebets.yaml @@ -0,0 +1,5 @@ +Description: Assess spider web structure by training and tracking models using SLEAP +Department: Biological Sciences +FieldOfScience: Biological Sciences +Organization: University of Nebraska-Lincoln +PIName: Eileen Hebets From f3523330fc499a724613c63795b73d9040b27f85 Mon Sep 17 00:00:00 2001 From: Ashton Graves Date: Thu, 17 Aug 2023 10:56:02 -0500 Subject: [PATCH 12/49] Adds uci-gpatlas-ce1 entry --- topology/UC Irvine/UCIT3/UCI-GPATLAS.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/topology/UC Irvine/UCIT3/UCI-GPATLAS.yaml b/topology/UC Irvine/UCIT3/UCI-GPATLAS.yaml index 624adbd7e..6085b7ddc 100644 --- a/topology/UC Irvine/UCIT3/UCI-GPATLAS.yaml +++ b/topology/UC Irvine/UCIT3/UCI-GPATLAS.yaml @@ -26,3 +26,26 @@ Resources: Description: Compute Element Details: hidden: false + UCI-GPATLAS-CE1: + Active: true + ContactLists: + Administrative Contact: + Primary: + ID: bc36e7fe84fffcb5cf195fe09cc42336f5cd5d1f + Name: Diego Davila + Security Contact: + Primary: + ID: bc36e7fe84fffcb5cf195fe09cc42336f5cd5d1f + Name: Diego Davila + Site Contact: + Primary: + ID: dbcd20edf55fb43c78b2e547a393898b42643d29 + Name: Nathan Crawford + Description: SLATE deployed Hosted CE for the GPAtlas Cluster + FQDN: uci-gpatlas-ce1.svc.opensciencegrid.org + ID: 1476 + Services: + CE: + Description: Compute Element + Details: + hidden: false \ No newline at end of file From b3991e63585c7df160d59e2a44cafd131772fcea Mon Sep 17 00:00:00 2001 From: Showmic Islam <57932760+showmic09@users.noreply.github.com> Date: Thu, 17 Aug 2023 10:56:29 -0500 Subject: [PATCH 13/49] Create NCSU_Staff.yaml --- projects/NCSU_Staff.yaml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 projects/NCSU_Staff.yaml diff --git a/projects/NCSU_Staff.yaml b/projects/NCSU_Staff.yaml new file mode 100644 index 000000000..f2b62a42c --- /dev/null +++ b/projects/NCSU_Staff.yaml @@ -0,0 +1,7 @@ +Description: > + Continue my access to the OSPool after the OSG School to further + support potential users and workflows for NC State University +Department: Research Facilitation Service +FieldOfScience: Other +Organization: North Carolina State University +PIName: Christopher Blanton From 44f433bf1224355b33ebb99ff3e01d956f4adc62 Mon Sep 17 00:00:00 2001 From: Rachel Lombardi <37351287+rachellombardi@users.noreply.github.com> Date: Thu, 17 Aug 2023 11:15:02 -0500 Subject: [PATCH 14/49] Create Etown_Wittmeyer.yaml --- projects/Etown_Wittmeyer.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 projects/Etown_Wittmeyer.yaml diff --git a/projects/Etown_Wittmeyer.yaml b/projects/Etown_Wittmeyer.yaml new file mode 100644 index 000000000..8f19a77fa --- /dev/null +++ b/projects/Etown_Wittmeyer.yaml @@ -0,0 +1,11 @@ +Description: I am interested in examining experience-dependent neuroplasticity and individual differences in humans as it pertains to learning and memory. In particular, I analyze structural magnetic resonance imaging (sMRI) data from various neuroimaging data-sharing platforms to explore changes in gray matter across learning and/or correlate learning performance with various cognitive and demographic factors. +Department: Psychology +FieldOfScience: Psychology and Life Sciences +Organization: Elizabethtown College +PIName: Jennifer Legault Wittmeyer + +ID: '591' + +Sponsor: + CampusGrid: + Name: OSG Connect From 50c6d86d76fd499e750bb7fa4f4221afb9b23f38 Mon Sep 17 00:00:00 2001 From: Rachel Lombardi <37351287+rachellombardi@users.noreply.github.com> Date: Thu, 17 Aug 2023 11:34:23 -0500 Subject: [PATCH 15/49] Create IIT_Zhong.yaml --- projects/IIT_Zhong.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 projects/IIT_Zhong.yaml diff --git a/projects/IIT_Zhong.yaml b/projects/IIT_Zhong.yaml new file mode 100644 index 000000000..69fb8928d --- /dev/null +++ b/projects/IIT_Zhong.yaml @@ -0,0 +1,9 @@ +Description: We conduct research on scientific machine learning, especially related to how machine learning can be used to learn and understand dynamical systems from observation data. Right now, we are developing models to understand synchronization, i.e. how oscillators can be put in sync with spatial patterns. +Department: Appleid Mathematics +FieldOfScience: Appleid Mathematics +Organization: Illinois Institute of Technology +PIName: Ming Zhong + +Sponsor: + CampusGrid: + Name: OSG Connect From 330e69c506fe3d4c106dcc58c14b230becd17a36 Mon Sep 17 00:00:00 2001 From: Doug Benjamin Date: Fri, 18 Aug 2023 07:23:44 -0500 Subject: [PATCH 16/49] HTCondor and dCache upgrades --- .../BNL ATLAS Tier1/BNL-ATLAS_downtime.yaml | 377 ++++++++++++++++++ 1 file changed, 377 insertions(+) diff --git a/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL-ATLAS_downtime.yaml b/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL-ATLAS_downtime.yaml index b8ddecb4c..3f64aaa87 100644 --- a/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL-ATLAS_downtime.yaml +++ b/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL-ATLAS_downtime.yaml @@ -1104,3 +1104,380 @@ Services: - net.perfSONAR.Latency # --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603394 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: BNL_ATLAS_1 + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603395 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: BNL_ATLAS_2 + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603396 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: BNL_ATLAS_3 + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603397 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: BNL_ATLAS_4 + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603398 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: BNL_ATLAS_6 + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603399 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: BNL_ATLAS_7 + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603400 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: BNL_ATLAS_8 + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603401 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: BNL_ATLAS_CVMFS_Squid + Services: + - Squid +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603402 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: BNL_ATLAS_Frontier_Squid + Services: + - Squid +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603403 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: BNL_ATLAS_SE + Services: + - SRMv2.disk + - SRMv2.tape +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603404 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: BNL_ATLAS_SE_AWS_East + Services: + - SRMv2 +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603405 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: BNL_ATLAS_SE_AWS_West + Services: + - SRMv2 +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603406 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: BNL_ATLAS_SE_AWS_West2 + Services: + - SRMv2 +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603407 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: BNL_ATLAS_SE_GRIDFTP + Services: + - WebDAV +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603408 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: lhcmon-bnl + Services: + - net.perfSONAR.Bandwidth +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603409 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: lhcperfmon-bnl + Services: + - net.perfSONAR.Latency +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603410 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: ps-development + Services: + - net.perfSONAR.Latency +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603394 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: BNL_ATLAS_1 + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603395 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: BNL_ATLAS_2 + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603396 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: BNL_ATLAS_3 + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603397 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: BNL_ATLAS_4 + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603398 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: BNL_ATLAS_6 + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603399 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: BNL_ATLAS_7 + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603400 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: BNL_ATLAS_8 + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603401 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: BNL_ATLAS_CVMFS_Squid + Services: + - Squid +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603402 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: BNL_ATLAS_Frontier_Squid + Services: + - Squid +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603403 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: BNL_ATLAS_SE + Services: + - SRMv2.disk + - SRMv2.tape +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603404 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: BNL_ATLAS_SE_AWS_East + Services: + - SRMv2 +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603405 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: BNL_ATLAS_SE_AWS_West + Services: + - SRMv2 +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603406 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: BNL_ATLAS_SE_AWS_West2 + Services: + - SRMv2 +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603407 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: BNL_ATLAS_SE_GRIDFTP + Services: + - WebDAV +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603408 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: lhcmon-bnl + Services: + - net.perfSONAR.Bandwidth +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603409 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: lhcperfmon-bnl + Services: + - net.perfSONAR.Latency +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1573603410 + Description: HTCondor upgrade and dCache version upgrade + Severity: Outage + StartTime: Aug 29, 2023 13:00 +0000 + EndTime: Aug 29, 2023 17:00 +0000 + CreatedTime: Aug 18, 2023 12:05 +0000 + ResourceName: ps-development + Services: + - net.perfSONAR.Latency +# --------------------------------------------------------- + From 6514e480fa804832ed55374bf123ca560620071a Mon Sep 17 00:00:00 2001 From: Doug Benjamin Date: Fri, 18 Aug 2023 07:33:31 -0500 Subject: [PATCH 17/49] HTCondor and dCache upgrades --- .../BNL ATLAS Tier1/BNL-ATLAS_downtime.yaml | 189 ------------------ 1 file changed, 189 deletions(-) diff --git a/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL-ATLAS_downtime.yaml b/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL-ATLAS_downtime.yaml index 3f64aaa87..1bad7188a 100644 --- a/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL-ATLAS_downtime.yaml +++ b/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL-ATLAS_downtime.yaml @@ -1292,192 +1292,3 @@ Services: - net.perfSONAR.Latency # --------------------------------------------------------- -- Class: SCHEDULED - ID: 1573603394 - Description: HTCondor upgrade and dCache version upgrade - Severity: Outage - StartTime: Aug 29, 2023 13:00 +0000 - EndTime: Aug 29, 2023 17:00 +0000 - CreatedTime: Aug 18, 2023 12:05 +0000 - ResourceName: BNL_ATLAS_1 - Services: - - CE -# --------------------------------------------------------- -- Class: SCHEDULED - ID: 1573603395 - Description: HTCondor upgrade and dCache version upgrade - Severity: Outage - StartTime: Aug 29, 2023 13:00 +0000 - EndTime: Aug 29, 2023 17:00 +0000 - CreatedTime: Aug 18, 2023 12:05 +0000 - ResourceName: BNL_ATLAS_2 - Services: - - CE -# --------------------------------------------------------- -- Class: SCHEDULED - ID: 1573603396 - Description: HTCondor upgrade and dCache version upgrade - Severity: Outage - StartTime: Aug 29, 2023 13:00 +0000 - EndTime: Aug 29, 2023 17:00 +0000 - CreatedTime: Aug 18, 2023 12:05 +0000 - ResourceName: BNL_ATLAS_3 - Services: - - CE -# --------------------------------------------------------- -- Class: SCHEDULED - ID: 1573603397 - Description: HTCondor upgrade and dCache version upgrade - Severity: Outage - StartTime: Aug 29, 2023 13:00 +0000 - EndTime: Aug 29, 2023 17:00 +0000 - CreatedTime: Aug 18, 2023 12:05 +0000 - ResourceName: BNL_ATLAS_4 - Services: - - CE -# --------------------------------------------------------- -- Class: SCHEDULED - ID: 1573603398 - Description: HTCondor upgrade and dCache version upgrade - Severity: Outage - StartTime: Aug 29, 2023 13:00 +0000 - EndTime: Aug 29, 2023 17:00 +0000 - CreatedTime: Aug 18, 2023 12:05 +0000 - ResourceName: BNL_ATLAS_6 - Services: - - CE -# --------------------------------------------------------- -- Class: SCHEDULED - ID: 1573603399 - Description: HTCondor upgrade and dCache version upgrade - Severity: Outage - StartTime: Aug 29, 2023 13:00 +0000 - EndTime: Aug 29, 2023 17:00 +0000 - CreatedTime: Aug 18, 2023 12:05 +0000 - ResourceName: BNL_ATLAS_7 - Services: - - CE -# --------------------------------------------------------- -- Class: SCHEDULED - ID: 1573603400 - Description: HTCondor upgrade and dCache version upgrade - Severity: Outage - StartTime: Aug 29, 2023 13:00 +0000 - EndTime: Aug 29, 2023 17:00 +0000 - CreatedTime: Aug 18, 2023 12:05 +0000 - ResourceName: BNL_ATLAS_8 - Services: - - CE -# --------------------------------------------------------- -- Class: SCHEDULED - ID: 1573603401 - Description: HTCondor upgrade and dCache version upgrade - Severity: Outage - StartTime: Aug 29, 2023 13:00 +0000 - EndTime: Aug 29, 2023 17:00 +0000 - CreatedTime: Aug 18, 2023 12:05 +0000 - ResourceName: BNL_ATLAS_CVMFS_Squid - Services: - - Squid -# --------------------------------------------------------- -- Class: SCHEDULED - ID: 1573603402 - Description: HTCondor upgrade and dCache version upgrade - Severity: Outage - StartTime: Aug 29, 2023 13:00 +0000 - EndTime: Aug 29, 2023 17:00 +0000 - CreatedTime: Aug 18, 2023 12:05 +0000 - ResourceName: BNL_ATLAS_Frontier_Squid - Services: - - Squid -# --------------------------------------------------------- -- Class: SCHEDULED - ID: 1573603403 - Description: HTCondor upgrade and dCache version upgrade - Severity: Outage - StartTime: Aug 29, 2023 13:00 +0000 - EndTime: Aug 29, 2023 17:00 +0000 - CreatedTime: Aug 18, 2023 12:05 +0000 - ResourceName: BNL_ATLAS_SE - Services: - - SRMv2.disk - - SRMv2.tape -# --------------------------------------------------------- -- Class: SCHEDULED - ID: 1573603404 - Description: HTCondor upgrade and dCache version upgrade - Severity: Outage - StartTime: Aug 29, 2023 13:00 +0000 - EndTime: Aug 29, 2023 17:00 +0000 - CreatedTime: Aug 18, 2023 12:05 +0000 - ResourceName: BNL_ATLAS_SE_AWS_East - Services: - - SRMv2 -# --------------------------------------------------------- -- Class: SCHEDULED - ID: 1573603405 - Description: HTCondor upgrade and dCache version upgrade - Severity: Outage - StartTime: Aug 29, 2023 13:00 +0000 - EndTime: Aug 29, 2023 17:00 +0000 - CreatedTime: Aug 18, 2023 12:05 +0000 - ResourceName: BNL_ATLAS_SE_AWS_West - Services: - - SRMv2 -# --------------------------------------------------------- -- Class: SCHEDULED - ID: 1573603406 - Description: HTCondor upgrade and dCache version upgrade - Severity: Outage - StartTime: Aug 29, 2023 13:00 +0000 - EndTime: Aug 29, 2023 17:00 +0000 - CreatedTime: Aug 18, 2023 12:05 +0000 - ResourceName: BNL_ATLAS_SE_AWS_West2 - Services: - - SRMv2 -# --------------------------------------------------------- -- Class: SCHEDULED - ID: 1573603407 - Description: HTCondor upgrade and dCache version upgrade - Severity: Outage - StartTime: Aug 29, 2023 13:00 +0000 - EndTime: Aug 29, 2023 17:00 +0000 - CreatedTime: Aug 18, 2023 12:05 +0000 - ResourceName: BNL_ATLAS_SE_GRIDFTP - Services: - - WebDAV -# --------------------------------------------------------- -- Class: SCHEDULED - ID: 1573603408 - Description: HTCondor upgrade and dCache version upgrade - Severity: Outage - StartTime: Aug 29, 2023 13:00 +0000 - EndTime: Aug 29, 2023 17:00 +0000 - CreatedTime: Aug 18, 2023 12:05 +0000 - ResourceName: lhcmon-bnl - Services: - - net.perfSONAR.Bandwidth -# --------------------------------------------------------- -- Class: SCHEDULED - ID: 1573603409 - Description: HTCondor upgrade and dCache version upgrade - Severity: Outage - StartTime: Aug 29, 2023 13:00 +0000 - EndTime: Aug 29, 2023 17:00 +0000 - CreatedTime: Aug 18, 2023 12:05 +0000 - ResourceName: lhcperfmon-bnl - Services: - - net.perfSONAR.Latency -# --------------------------------------------------------- -- Class: SCHEDULED - ID: 1573603410 - Description: HTCondor upgrade and dCache version upgrade - Severity: Outage - StartTime: Aug 29, 2023 13:00 +0000 - EndTime: Aug 29, 2023 17:00 +0000 - CreatedTime: Aug 18, 2023 12:05 +0000 - ResourceName: ps-development - Services: - - net.perfSONAR.Latency -# --------------------------------------------------------- - From bc5980438da50c6a27ef510944a789c14f67e7e4 Mon Sep 17 00:00:00 2001 From: mwestphall Date: Fri, 18 Aug 2023 13:15:05 -0500 Subject: [PATCH 18/49] Add missing ID to FSU-HNPGRID-OSDF-Origin --- .../FSU_HNPGRID/OSG_US_FSU_HNPGRID.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/Florida State University/FSU_HNPGRID/OSG_US_FSU_HNPGRID.yaml b/topology/Florida State University/FSU_HNPGRID/OSG_US_FSU_HNPGRID.yaml index c50d10c85..b90bf66e3 100644 --- a/topology/Florida State University/FSU_HNPGRID/OSG_US_FSU_HNPGRID.yaml +++ b/topology/Florida State University/FSU_HNPGRID/OSG_US_FSU_HNPGRID.yaml @@ -69,7 +69,7 @@ Resources: Name: Sean Dobbs Description: OSDF Origin server for FSU-HNPGRID FQDN: npgrid.fsu.edu - ID: + ID: 1476 Services: XRootD origin server: Description: OSDF Origin server for FSU-HNPGRID From 05197d0744edcb1088f7df6263d8b6538d4eff40 Mon Sep 17 00:00:00 2001 From: Sean Dobbs Date: Fri, 18 Aug 2023 15:29:10 -0400 Subject: [PATCH 19/49] Update OSG_US_FSU_HNPGRID.yaml Add AllowedVOs entry --- .../FSU_HNPGRID/OSG_US_FSU_HNPGRID.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/topology/Florida State University/FSU_HNPGRID/OSG_US_FSU_HNPGRID.yaml b/topology/Florida State University/FSU_HNPGRID/OSG_US_FSU_HNPGRID.yaml index b90bf66e3..89019298a 100644 --- a/topology/Florida State University/FSU_HNPGRID/OSG_US_FSU_HNPGRID.yaml +++ b/topology/Florida State University/FSU_HNPGRID/OSG_US_FSU_HNPGRID.yaml @@ -75,6 +75,8 @@ Resources: Description: OSDF Origin server for FSU-HNPGRID Details: hidden: false + AllowedVOs: + - Gluex VOOwnership: Gluex: 100 SupportCenter: UChicago From 6257975c2a3e1228d4ccfd9cac9d05cff9a058cd Mon Sep 17 00:00:00 2001 From: mwestphall Date: Fri, 18 Aug 2023 16:29:00 -0500 Subject: [PATCH 20/49] Bump resource ID to avoid collision --- topology/UC Irvine/UCIT3/UCI-GPATLAS.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/UC Irvine/UCIT3/UCI-GPATLAS.yaml b/topology/UC Irvine/UCIT3/UCI-GPATLAS.yaml index 6085b7ddc..26a69c27b 100644 --- a/topology/UC Irvine/UCIT3/UCI-GPATLAS.yaml +++ b/topology/UC Irvine/UCIT3/UCI-GPATLAS.yaml @@ -43,7 +43,7 @@ Resources: Name: Nathan Crawford Description: SLATE deployed Hosted CE for the GPAtlas Cluster FQDN: uci-gpatlas-ce1.svc.opensciencegrid.org - ID: 1476 + ID: 1477 Services: CE: Description: Compute Element From d4cb7c12b09170303adc9dbbceb8bc63d3ad5df9 Mon Sep 17 00:00:00 2001 From: ddavila0 Date: Sat, 19 Aug 2023 13:33:41 -0700 Subject: [PATCH 21/49] Update UCSDT2_downtime.yaml downtime due to storm --- .../UCSD CMS Tier2/UCSDT2_downtime.yaml | 187 ++++++++++++++++++ 1 file changed, 187 insertions(+) diff --git a/topology/University of California San Diego/UCSD CMS Tier2/UCSDT2_downtime.yaml b/topology/University of California San Diego/UCSD CMS Tier2/UCSDT2_downtime.yaml index 1bafaeefd..ac89faf82 100644 --- a/topology/University of California San Diego/UCSD CMS Tier2/UCSDT2_downtime.yaml +++ b/topology/University of California San Diego/UCSD CMS Tier2/UCSDT2_downtime.yaml @@ -1587,3 +1587,190 @@ Services: - CE # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1574764611 + Description: storm + Severity: Outage + StartTime: Aug 19, 2023 23:00 +0000 + EndTime: Aug 23, 2023 00:00 +0000 + CreatedTime: Aug 19, 2023 20:21 +0000 + ResourceName: UCSDCMST2-2-squid + Services: + - Squid +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1574764612 + Description: storm + Severity: Outage + StartTime: Aug 19, 2023 23:00 +0000 + EndTime: Aug 23, 2023 00:00 +0000 + CreatedTime: Aug 19, 2023 20:21 +0000 + ResourceName: UCSDCMST2-squid + Services: + - Squid +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1574764613 + Description: storm + Severity: Outage + StartTime: Aug 19, 2023 23:00 +0000 + EndTime: Aug 23, 2023 00:00 +0000 + CreatedTime: Aug 19, 2023 20:21 +0000 + ResourceName: UCSDT2-A + Services: + - CE +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1574764614 + Description: storm + Severity: Outage + StartTime: Aug 19, 2023 23:00 +0000 + EndTime: Aug 23, 2023 00:00 +0000 + CreatedTime: Aug 19, 2023 20:21 +0000 + ResourceName: UCSDT2-B + Services: + - CE +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1574764615 + Description: storm + Severity: Outage + StartTime: Aug 19, 2023 23:00 +0000 + EndTime: Aug 23, 2023 00:00 +0000 + CreatedTime: Aug 19, 2023 20:21 +0000 + ResourceName: UCSDT2-C + Services: + - CE +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1574764616 + Description: storm + Severity: Outage + StartTime: Aug 19, 2023 23:00 +0000 + EndTime: Aug 23, 2023 00:00 +0000 + CreatedTime: Aug 19, 2023 20:21 +0000 + ResourceName: UCSDT2-Cloud + Services: + - CE +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1574764617 + Description: storm + Severity: Outage + StartTime: Aug 19, 2023 23:00 +0000 + EndTime: Aug 23, 2023 00:00 +0000 + CreatedTime: Aug 19, 2023 20:21 +0000 + ResourceName: UCSDT2-Cloud-1-squid + Services: + - Squid +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1574764618 + Description: storm + Severity: Outage + StartTime: Aug 19, 2023 23:00 +0000 + EndTime: Aug 23, 2023 00:00 +0000 + CreatedTime: Aug 19, 2023 20:21 +0000 + ResourceName: UCSDT2-Cloud-2-squid + Services: + - Squid +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1574764619 + Description: storm + Severity: Outage + StartTime: Aug 19, 2023 23:00 +0000 + EndTime: Aug 23, 2023 00:00 +0000 + CreatedTime: Aug 19, 2023 20:21 +0000 + ResourceName: UCSDT2-Cloud-3-squid + Services: + - Squid +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1574764620 + Description: storm + Severity: Outage + StartTime: Aug 19, 2023 23:00 +0000 + EndTime: Aug 23, 2023 00:00 +0000 + CreatedTime: Aug 19, 2023 20:21 +0000 + ResourceName: UCSDT2-Cloud-4-squid + Services: + - Squid +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1574764621 + Description: storm + Severity: Outage + StartTime: Aug 19, 2023 23:00 +0000 + EndTime: Aug 23, 2023 00:00 +0000 + CreatedTime: Aug 19, 2023 20:21 +0000 + ResourceName: UCSDT2-Cloud-5-squid + Services: + - Squid +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1574764622 + Description: storm + Severity: Outage + StartTime: Aug 19, 2023 23:00 +0000 + EndTime: Aug 23, 2023 00:00 +0000 + CreatedTime: Aug 19, 2023 20:21 +0000 + ResourceName: UCSDT2-Cloud-6-squid + Services: + - Squid +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1574764623 + Description: storm + Severity: Outage + StartTime: Aug 19, 2023 23:00 +0000 + EndTime: Aug 23, 2023 00:00 +0000 + CreatedTime: Aug 19, 2023 20:21 +0000 + ResourceName: UCSDT2-D + Services: + - CE +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1574764624 + Description: storm + Severity: Outage + StartTime: Aug 19, 2023 23:00 +0000 + EndTime: Aug 23, 2023 00:00 +0000 + CreatedTime: Aug 19, 2023 20:21 +0000 + ResourceName: UCSDT2-SE1 + Services: + - GridFtp +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1574764625 + Description: storm + Severity: Outage + StartTime: Aug 19, 2023 23:00 +0000 + EndTime: Aug 23, 2023 00:00 +0000 + CreatedTime: Aug 19, 2023 20:21 +0000 + ResourceName: UCSDT2-SE3 + Services: + - SRMv2 +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1574764626 + Description: storm + Severity: Outage + StartTime: Aug 19, 2023 23:00 +0000 + EndTime: Aug 23, 2023 00:00 +0000 + CreatedTime: Aug 19, 2023 20:21 +0000 + ResourceName: US-UCSD BW + Services: + - net.perfSONAR.Bandwidth +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1574764627 + Description: storm + Severity: Outage + StartTime: Aug 19, 2023 23:00 +0000 + EndTime: Aug 23, 2023 00:00 +0000 + CreatedTime: Aug 19, 2023 20:21 +0000 + ResourceName: US-UCSD LT + Services: + - net.perfSONAR.Latency +# --------------------------------------------------------- From 10628fac52e8ee196cd748baf0b0c1a25fe56eb5 Mon Sep 17 00:00:00 2001 From: edubach <124012043+edubach@users.noreply.github.com> Date: Mon, 21 Aug 2023 12:57:50 +0100 Subject: [PATCH 22/49] Update NET2.yaml storage values changing StorageCapaity* from 2000 to 2685 --- .../University of Massachusetts - Amherst/NET2/NET2.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/topology/University of Massachusetts - Amherst/NET2/NET2.yaml b/topology/University of Massachusetts - Amherst/NET2/NET2.yaml index 77fbeda4b..7fc7b2dc4 100644 --- a/topology/University of Massachusetts - Amherst/NET2/NET2.yaml +++ b/topology/University of Massachusetts - Amherst/NET2/NET2.yaml @@ -39,8 +39,8 @@ Resources: InteropMonitoring: true KSI2KMax: 0 KSI2KMin: 0 - StorageCapacityMax: 2000 - StorageCapacityMin: 2000 + StorageCapacityMax: 2685 + StorageCapacityMin: 2685 TapeCapacity: 0 NET2_SE_XRootD: Active: true @@ -78,8 +78,8 @@ Resources: InteropMonitoring: true KSI2KMax: 0 KSI2KMin: 0 - StorageCapacityMax: 2000 - StorageCapacityMin: 2000 + StorageCapacityMax: 2685 + StorageCapacityMin: 2685 TapeCapacity: 0 NET2-PS-BW: Active: true From 0d35c278f54ba49d254f6712ec983a309781bc4a Mon Sep 17 00:00:00 2001 From: Showmic Islam <57932760+showmic09@users.noreply.github.com> Date: Mon, 21 Aug 2023 11:25:07 -0500 Subject: [PATCH 23/49] Create FIU_Guo.yaml --- projects/FIU_Guo.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 projects/FIU_Guo.yaml diff --git a/projects/FIU_Guo.yaml b/projects/FIU_Guo.yaml new file mode 100644 index 000000000..8bcad1f21 --- /dev/null +++ b/projects/FIU_Guo.yaml @@ -0,0 +1,9 @@ +Description: > + My research in experimental nuclear physics requires large amounts of + simulations. These simulations are independent of one another and the OSPool is + very well suited for these tasks. Access to the OSG computing resources would be + a useful asset for my research. +Department: College of Arts and Science +FieldOfScience: Physics +Organization: Florida International University +PIName: Lei Guo From 09f365cbca9c036b8129dd73edf78670ae5caa5c Mon Sep 17 00:00:00 2001 From: ddavila0 Date: Mon, 21 Aug 2023 16:12:43 -0700 Subject: [PATCH 24/49] Update UCSDT2_downtime.yaml we decided to cut the downtime short due to the services being ready --- .../UCSD CMS Tier2/UCSDT2_downtime.yaml | 34 +++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/topology/University of California San Diego/UCSD CMS Tier2/UCSDT2_downtime.yaml b/topology/University of California San Diego/UCSD CMS Tier2/UCSDT2_downtime.yaml index ac89faf82..19834b95f 100644 --- a/topology/University of California San Diego/UCSD CMS Tier2/UCSDT2_downtime.yaml +++ b/topology/University of California San Diego/UCSD CMS Tier2/UCSDT2_downtime.yaml @@ -1592,7 +1592,7 @@ Description: storm Severity: Outage StartTime: Aug 19, 2023 23:00 +0000 - EndTime: Aug 23, 2023 00:00 +0000 + EndTime: Aug 22, 2023 00:00 +0000 CreatedTime: Aug 19, 2023 20:21 +0000 ResourceName: UCSDCMST2-2-squid Services: @@ -1603,7 +1603,7 @@ Description: storm Severity: Outage StartTime: Aug 19, 2023 23:00 +0000 - EndTime: Aug 23, 2023 00:00 +0000 + EndTime: Aug 22, 2023 00:00 +0000 CreatedTime: Aug 19, 2023 20:21 +0000 ResourceName: UCSDCMST2-squid Services: @@ -1614,7 +1614,7 @@ Description: storm Severity: Outage StartTime: Aug 19, 2023 23:00 +0000 - EndTime: Aug 23, 2023 00:00 +0000 + EndTime: Aug 22, 2023 00:00 +0000 CreatedTime: Aug 19, 2023 20:21 +0000 ResourceName: UCSDT2-A Services: @@ -1625,7 +1625,7 @@ Description: storm Severity: Outage StartTime: Aug 19, 2023 23:00 +0000 - EndTime: Aug 23, 2023 00:00 +0000 + EndTime: Aug 22, 2023 00:00 +0000 CreatedTime: Aug 19, 2023 20:21 +0000 ResourceName: UCSDT2-B Services: @@ -1636,7 +1636,7 @@ Description: storm Severity: Outage StartTime: Aug 19, 2023 23:00 +0000 - EndTime: Aug 23, 2023 00:00 +0000 + EndTime: Aug 22, 2023 00:00 +0000 CreatedTime: Aug 19, 2023 20:21 +0000 ResourceName: UCSDT2-C Services: @@ -1647,7 +1647,7 @@ Description: storm Severity: Outage StartTime: Aug 19, 2023 23:00 +0000 - EndTime: Aug 23, 2023 00:00 +0000 + EndTime: Aug 22, 2023 00:00 +0000 CreatedTime: Aug 19, 2023 20:21 +0000 ResourceName: UCSDT2-Cloud Services: @@ -1658,7 +1658,7 @@ Description: storm Severity: Outage StartTime: Aug 19, 2023 23:00 +0000 - EndTime: Aug 23, 2023 00:00 +0000 + EndTime: Aug 22, 2023 00:00 +0000 CreatedTime: Aug 19, 2023 20:21 +0000 ResourceName: UCSDT2-Cloud-1-squid Services: @@ -1669,7 +1669,7 @@ Description: storm Severity: Outage StartTime: Aug 19, 2023 23:00 +0000 - EndTime: Aug 23, 2023 00:00 +0000 + EndTime: Aug 22, 2023 00:00 +0000 CreatedTime: Aug 19, 2023 20:21 +0000 ResourceName: UCSDT2-Cloud-2-squid Services: @@ -1680,7 +1680,7 @@ Description: storm Severity: Outage StartTime: Aug 19, 2023 23:00 +0000 - EndTime: Aug 23, 2023 00:00 +0000 + EndTime: Aug 22, 2023 00:00 +0000 CreatedTime: Aug 19, 2023 20:21 +0000 ResourceName: UCSDT2-Cloud-3-squid Services: @@ -1691,7 +1691,7 @@ Description: storm Severity: Outage StartTime: Aug 19, 2023 23:00 +0000 - EndTime: Aug 23, 2023 00:00 +0000 + EndTime: Aug 22, 2023 00:00 +0000 CreatedTime: Aug 19, 2023 20:21 +0000 ResourceName: UCSDT2-Cloud-4-squid Services: @@ -1702,7 +1702,7 @@ Description: storm Severity: Outage StartTime: Aug 19, 2023 23:00 +0000 - EndTime: Aug 23, 2023 00:00 +0000 + EndTime: Aug 22, 2023 00:00 +0000 CreatedTime: Aug 19, 2023 20:21 +0000 ResourceName: UCSDT2-Cloud-5-squid Services: @@ -1713,7 +1713,7 @@ Description: storm Severity: Outage StartTime: Aug 19, 2023 23:00 +0000 - EndTime: Aug 23, 2023 00:00 +0000 + EndTime: Aug 22, 2023 00:00 +0000 CreatedTime: Aug 19, 2023 20:21 +0000 ResourceName: UCSDT2-Cloud-6-squid Services: @@ -1724,7 +1724,7 @@ Description: storm Severity: Outage StartTime: Aug 19, 2023 23:00 +0000 - EndTime: Aug 23, 2023 00:00 +0000 + EndTime: Aug 22, 2023 00:00 +0000 CreatedTime: Aug 19, 2023 20:21 +0000 ResourceName: UCSDT2-D Services: @@ -1735,7 +1735,7 @@ Description: storm Severity: Outage StartTime: Aug 19, 2023 23:00 +0000 - EndTime: Aug 23, 2023 00:00 +0000 + EndTime: Aug 22, 2023 00:00 +0000 CreatedTime: Aug 19, 2023 20:21 +0000 ResourceName: UCSDT2-SE1 Services: @@ -1746,7 +1746,7 @@ Description: storm Severity: Outage StartTime: Aug 19, 2023 23:00 +0000 - EndTime: Aug 23, 2023 00:00 +0000 + EndTime: Aug 22, 2023 00:00 +0000 CreatedTime: Aug 19, 2023 20:21 +0000 ResourceName: UCSDT2-SE3 Services: @@ -1757,7 +1757,7 @@ Description: storm Severity: Outage StartTime: Aug 19, 2023 23:00 +0000 - EndTime: Aug 23, 2023 00:00 +0000 + EndTime: Aug 22, 2023 00:00 +0000 CreatedTime: Aug 19, 2023 20:21 +0000 ResourceName: US-UCSD BW Services: @@ -1768,7 +1768,7 @@ Description: storm Severity: Outage StartTime: Aug 19, 2023 23:00 +0000 - EndTime: Aug 23, 2023 00:00 +0000 + EndTime: Aug 22, 2023 00:00 +0000 CreatedTime: Aug 19, 2023 20:21 +0000 ResourceName: US-UCSD LT Services: From 59e5e888354b0e60f8bf06cf5f1cf371f9891120 Mon Sep 17 00:00:00 2001 From: Showmic Islam <57932760+showmic09@users.noreply.github.com> Date: Tue, 22 Aug 2023 23:28:36 -0500 Subject: [PATCH 25/49] Create NMSU_Lawson.yaml --- projects/NMSU_Lawson.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 projects/NMSU_Lawson.yaml diff --git a/projects/NMSU_Lawson.yaml b/projects/NMSU_Lawson.yaml new file mode 100644 index 000000000..467421f08 --- /dev/null +++ b/projects/NMSU_Lawson.yaml @@ -0,0 +1,9 @@ +Description: > + I am requesting an OSPool project for my postdoctoral research investigating + drivers of population decline for the American Kestrel, a raptor species that breeds + across North America. I plan to use OSG resources to compile my environmental data + and fit statistical models. +Department: Fish, Wildlife, and Conservation Ecology +FieldOfScience: Ecological and Environmental Sciences +Organization: New Mexico State University +PIName: Abigail Lawson From 50ad36b7429e1a0e8d0f5ca630c7fe5be96b4592 Mon Sep 17 00:00:00 2001 From: Showmic Islam <57932760+showmic09@users.noreply.github.com> Date: Wed, 23 Aug 2023 08:40:47 -0500 Subject: [PATCH 26/49] Create NCSU_Gray.yaml --- projects/NCSU_Gray.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 projects/NCSU_Gray.yaml diff --git a/projects/NCSU_Gray.yaml b/projects/NCSU_Gray.yaml new file mode 100644 index 000000000..494d79ae7 --- /dev/null +++ b/projects/NCSU_Gray.yaml @@ -0,0 +1,9 @@ +Description: > + Map and characterize global change, and to understand the consequences of these changes for the Earth system and society. + Anthropogenic changes to vegetation (e.g. cropping systems, deforestation, etc.) are of particular interest. + Example research questions include: How can we feed a growing population without running out of water? + Have tropical deforestation mitigation policies been effective? How is vegetation phenology changing in response to a changing climate? +Department: Center for Geospatial Analytics +FieldOfScience: Geosciences +Organization: North Carolina State University +PIName: Josh Gray From 2df89f70e5643fd54ac9ed8ac6132837fbedb203 Mon Sep 17 00:00:00 2001 From: Ashton Graves Date: Thu, 24 Aug 2023 08:27:19 -0500 Subject: [PATCH 27/49] sets uci ce active to false --- topology/UC Irvine/UCIT3/UCI-GPATLAS.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/UC Irvine/UCIT3/UCI-GPATLAS.yaml b/topology/UC Irvine/UCIT3/UCI-GPATLAS.yaml index 26a69c27b..718212549 100644 --- a/topology/UC Irvine/UCIT3/UCI-GPATLAS.yaml +++ b/topology/UC Irvine/UCIT3/UCI-GPATLAS.yaml @@ -4,7 +4,7 @@ Production: true SupportCenter: Self Supported Resources: UCI-GPATLAS: - Active: true + Active: false ContactLists: Administrative Contact: Primary: From 2d1b7959f388b8554c193757f4ada0710be1d0b4 Mon Sep 17 00:00:00 2001 From: Brian Lin Date: Thu, 24 Aug 2023 15:57:14 -0500 Subject: [PATCH 28/49] Allow all new UC OSPool APs to access /ospool/uc-shared See c3524138ac8d46eee2a3c33cb75fac50acab41c4 for an explanation why --- virtual-organizations/OSG.yaml | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/virtual-organizations/OSG.yaml b/virtual-organizations/OSG.yaml index 7ef021a76..62b75e741 100644 --- a/virtual-organizations/OSG.yaml +++ b/virtual-organizations/OSG.yaml @@ -180,7 +180,7 @@ DataFederations: Authorizations: - SciTokens: Issuer: https://ap20.uc.osg-htc.org:1094/ospool/ap20 - Base Path: /ospool/ap20 + Base Path: /ospool/ap20, /ospool/uc-shared Map Subject: True AllowedOrigins: - UChicago_OSGConnect_ap20 @@ -197,7 +197,7 @@ DataFederations: Authorizations: - SciTokens: Issuer: https://ap21.uc.osg-htc.org:1094/ospool/ap21 - Base Path: /ospool/ap21 + Base Path: /ospool/ap21, /ospool/uc-shared Map Subject: True AllowedOrigins: - UChicago_OSGConnect_ap21 @@ -214,7 +214,7 @@ DataFederations: Authorizations: - SciTokens: Issuer: https://ap22.uc.osg-htc.org:1094/ospool/ap22 - Base Path: /ospool/ap22 + Base Path: /ospool/ap22, /ospool/uc-shared Map Subject: True AllowedOrigins: - UChicago_OSGConnect_ap22 @@ -233,6 +233,18 @@ DataFederations: Issuer: https://osg-htc.org/ospool/uc-shared Base Path: /ospool/uc-shared Map Subject: True + - SciTokens: + Issuer: https://ap20.uc.osg-htc.org:1094/ospool/ap20 + Base Path: /ospool/ap20, /ospool/uc-shared + Map Subject: True + - SciTokens: + Issuer: https://ap21.uc.osg-htc.org:1094/ospool/ap21 + Base Path: /ospool/ap21, /ospool/uc-shared + Map Subject: True + - SciTokens: + Issuer: https://ap22.uc.osg-htc.org:1094/ospool/ap22 + Base Path: /ospool/ap22, /ospool/uc-shared + Map Subject: True AllowedOrigins: - UChicago_OSGConnect_ap23 AllowedCaches: From 514a4e555f330c4f33adcbababb07e043731e3d9 Mon Sep 17 00:00:00 2001 From: Mats Rynge Date: Thu, 24 Aug 2023 14:42:12 -0700 Subject: [PATCH 29/49] Added Arizona gateway node --- .../ResearchTechnologies.yaml | 25 +++++++++++++++++++ .../Research Technologies/SITE.yaml | 8 ++++++ 2 files changed, 33 insertions(+) create mode 100644 topology/University of Arizona/Research Technologies/ResearchTechnologies.yaml create mode 100644 topology/University of Arizona/Research Technologies/SITE.yaml diff --git a/topology/University of Arizona/Research Technologies/ResearchTechnologies.yaml b/topology/University of Arizona/Research Technologies/ResearchTechnologies.yaml new file mode 100644 index 000000000..f64d7225c --- /dev/null +++ b/topology/University of Arizona/Research Technologies/ResearchTechnologies.yaml @@ -0,0 +1,25 @@ +GroupDescription: ResearchTechnologies +GroupID: 1366 +Production: true +Resources: + Gateway: + ContactLists: + Administrative Contact: + Primary: + ID: OSG1000526 + Name: Devin Richard Bayly + Security Contact: + Primary: + ID: OSG1000526 + Name: Devin Richard Bayly + Description: Science gateway node on Jestream2 + FQDN: js-172-93.jetstream-cloud.org + ID: 1478 + Services: + Submit Node: + Description: Science gateway OSPool access point + Details: + hidden: false + Tags: + - OSPool +SupportCenter: Self Supported diff --git a/topology/University of Arizona/Research Technologies/SITE.yaml b/topology/University of Arizona/Research Technologies/SITE.yaml new file mode 100644 index 000000000..fe4b0f4a2 --- /dev/null +++ b/topology/University of Arizona/Research Technologies/SITE.yaml @@ -0,0 +1,8 @@ +City: Tucson +Country: United States +Description: University of Arizona Research Technologies +ID: 10207 +Latitude: 32.229874 +Longitude: -110.953947 +State: Arizona +Zipcode: '85719' From f69ded97ade20960a78e98a2c7ad5d7a4be2051d Mon Sep 17 00:00:00 2001 From: Mats Rynge Date: Thu, 24 Aug 2023 14:43:09 -0700 Subject: [PATCH 30/49] Adjusted ID --- topology/University of Arizona/Research Technologies/SITE.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/University of Arizona/Research Technologies/SITE.yaml b/topology/University of Arizona/Research Technologies/SITE.yaml index fe4b0f4a2..921b9b949 100644 --- a/topology/University of Arizona/Research Technologies/SITE.yaml +++ b/topology/University of Arizona/Research Technologies/SITE.yaml @@ -1,7 +1,7 @@ City: Tucson Country: United States Description: University of Arizona Research Technologies -ID: 10207 +ID: 10367 Latitude: 32.229874 Longitude: -110.953947 State: Arizona From 73f8334c7120e482f2b4bc19e8896d8ae39989aa Mon Sep 17 00:00:00 2001 From: Brian Lin Date: Thu, 24 Aug 2023 16:55:34 -0500 Subject: [PATCH 31/49] Revert "Allow all new UC OSPool APs to access /ospool/uc-shared" This reverts commit 2d1b7959f388b8554c193757f4ada0710be1d0b4. --- virtual-organizations/OSG.yaml | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/virtual-organizations/OSG.yaml b/virtual-organizations/OSG.yaml index 62b75e741..7ef021a76 100644 --- a/virtual-organizations/OSG.yaml +++ b/virtual-organizations/OSG.yaml @@ -180,7 +180,7 @@ DataFederations: Authorizations: - SciTokens: Issuer: https://ap20.uc.osg-htc.org:1094/ospool/ap20 - Base Path: /ospool/ap20, /ospool/uc-shared + Base Path: /ospool/ap20 Map Subject: True AllowedOrigins: - UChicago_OSGConnect_ap20 @@ -197,7 +197,7 @@ DataFederations: Authorizations: - SciTokens: Issuer: https://ap21.uc.osg-htc.org:1094/ospool/ap21 - Base Path: /ospool/ap21, /ospool/uc-shared + Base Path: /ospool/ap21 Map Subject: True AllowedOrigins: - UChicago_OSGConnect_ap21 @@ -214,7 +214,7 @@ DataFederations: Authorizations: - SciTokens: Issuer: https://ap22.uc.osg-htc.org:1094/ospool/ap22 - Base Path: /ospool/ap22, /ospool/uc-shared + Base Path: /ospool/ap22 Map Subject: True AllowedOrigins: - UChicago_OSGConnect_ap22 @@ -233,18 +233,6 @@ DataFederations: Issuer: https://osg-htc.org/ospool/uc-shared Base Path: /ospool/uc-shared Map Subject: True - - SciTokens: - Issuer: https://ap20.uc.osg-htc.org:1094/ospool/ap20 - Base Path: /ospool/ap20, /ospool/uc-shared - Map Subject: True - - SciTokens: - Issuer: https://ap21.uc.osg-htc.org:1094/ospool/ap21 - Base Path: /ospool/ap21, /ospool/uc-shared - Map Subject: True - - SciTokens: - Issuer: https://ap22.uc.osg-htc.org:1094/ospool/ap22 - Base Path: /ospool/ap22, /ospool/uc-shared - Map Subject: True AllowedOrigins: - UChicago_OSGConnect_ap23 AllowedCaches: From 3ad2f3be5f4b0d4aac7676f4555df7e06ac30045 Mon Sep 17 00:00:00 2001 From: Mats Rynge Date: Thu, 24 Aug 2023 14:59:11 -0700 Subject: [PATCH 32/49] Update topology/University of Arizona/Research Technologies/ResearchTechnologies.yaml Co-authored-by: Matyas Selmeci --- .../Research Technologies/ResearchTechnologies.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/University of Arizona/Research Technologies/ResearchTechnologies.yaml b/topology/University of Arizona/Research Technologies/ResearchTechnologies.yaml index f64d7225c..d9a745862 100644 --- a/topology/University of Arizona/Research Technologies/ResearchTechnologies.yaml +++ b/topology/University of Arizona/Research Technologies/ResearchTechnologies.yaml @@ -2,7 +2,7 @@ GroupDescription: ResearchTechnologies GroupID: 1366 Production: true Resources: - Gateway: + Arizona-ResearchTechnologies-Gateway: ContactLists: Administrative Contact: Primary: From a1bf28d533165695ef9378e7dd42040841c7e390 Mon Sep 17 00:00:00 2001 From: Matyas Selmeci Date: Thu, 24 Aug 2023 17:03:26 -0500 Subject: [PATCH 33/49] /ospool/uc-shared/public should be public --- virtual-organizations/OSG.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/virtual-organizations/OSG.yaml b/virtual-organizations/OSG.yaml index 7ef021a76..5a15d4ef5 100644 --- a/virtual-organizations/OSG.yaml +++ b/virtual-organizations/OSG.yaml @@ -243,3 +243,18 @@ DataFederations: Strategy: OAuth2 Issuer: https://osg-htc.org/ospool/uc-shared MaxScopeDepth: 4 + + - Path: /ospool/uc-shared/public + Authorizations: + - PUBLIC + AllowedOrigins: + - UChicago_OSGConnect_ap23 + AllowedCaches: + - ANY + Writeback: https://ap23.uc.osg-htc.org:1095 + DirList: https://ap23.uc.osg-htc.org:1095 + CredentialGeneration: + Strategy: OAuth2 + Issuer: https://osg-htc.org/ospool/uc-shared + MaxScopeDepth: 4 + From e933c3c7480b711a8762d1f0e2a113defe21679e Mon Sep 17 00:00:00 2001 From: Doug Benjamin Date: Fri, 25 Aug 2023 09:21:19 -0500 Subject: [PATCH 34/49] Update BNL-ATLAS_downtime.yaml extend the downtime for Storage resources and remove the downtime for the personar resources and the squid resources --- .../BNL ATLAS Tier1/BNL-ATLAS_downtime.yaml | 66 ++----------------- 1 file changed, 5 insertions(+), 61 deletions(-) diff --git a/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL-ATLAS_downtime.yaml b/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL-ATLAS_downtime.yaml index 1bad7188a..37c8f9d34 100644 --- a/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL-ATLAS_downtime.yaml +++ b/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL-ATLAS_downtime.yaml @@ -1181,34 +1181,12 @@ Services: - CE # --------------------------------------------------------- -- Class: SCHEDULED - ID: 1573603401 - Description: HTCondor upgrade and dCache version upgrade - Severity: Outage - StartTime: Aug 29, 2023 13:00 +0000 - EndTime: Aug 29, 2023 17:00 +0000 - CreatedTime: Aug 18, 2023 12:05 +0000 - ResourceName: BNL_ATLAS_CVMFS_Squid - Services: - - Squid -# --------------------------------------------------------- -- Class: SCHEDULED - ID: 1573603402 - Description: HTCondor upgrade and dCache version upgrade - Severity: Outage - StartTime: Aug 29, 2023 13:00 +0000 - EndTime: Aug 29, 2023 17:00 +0000 - CreatedTime: Aug 18, 2023 12:05 +0000 - ResourceName: BNL_ATLAS_Frontier_Squid - Services: - - Squid -# --------------------------------------------------------- - Class: SCHEDULED ID: 1573603403 Description: HTCondor upgrade and dCache version upgrade Severity: Outage StartTime: Aug 29, 2023 13:00 +0000 - EndTime: Aug 29, 2023 17:00 +0000 + EndTime: Aug 29, 2023 19:00 +0000 CreatedTime: Aug 18, 2023 12:05 +0000 ResourceName: BNL_ATLAS_SE Services: @@ -1220,7 +1198,7 @@ Description: HTCondor upgrade and dCache version upgrade Severity: Outage StartTime: Aug 29, 2023 13:00 +0000 - EndTime: Aug 29, 2023 17:00 +0000 + EndTime: Aug 29, 2023 19:00 +0000 CreatedTime: Aug 18, 2023 12:05 +0000 ResourceName: BNL_ATLAS_SE_AWS_East Services: @@ -1231,7 +1209,7 @@ Description: HTCondor upgrade and dCache version upgrade Severity: Outage StartTime: Aug 29, 2023 13:00 +0000 - EndTime: Aug 29, 2023 17:00 +0000 + EndTime: Aug 29, 2023 19:00 +0000 CreatedTime: Aug 18, 2023 12:05 +0000 ResourceName: BNL_ATLAS_SE_AWS_West Services: @@ -1242,7 +1220,7 @@ Description: HTCondor upgrade and dCache version upgrade Severity: Outage StartTime: Aug 29, 2023 13:00 +0000 - EndTime: Aug 29, 2023 17:00 +0000 + EndTime: Aug 29, 2023 19:00 +0000 CreatedTime: Aug 18, 2023 12:05 +0000 ResourceName: BNL_ATLAS_SE_AWS_West2 Services: @@ -1253,42 +1231,8 @@ Description: HTCondor upgrade and dCache version upgrade Severity: Outage StartTime: Aug 29, 2023 13:00 +0000 - EndTime: Aug 29, 2023 17:00 +0000 + EndTime: Aug 29, 2023 19:00 +0000 CreatedTime: Aug 18, 2023 12:05 +0000 ResourceName: BNL_ATLAS_SE_GRIDFTP Services: - WebDAV -# --------------------------------------------------------- -- Class: SCHEDULED - ID: 1573603408 - Description: HTCondor upgrade and dCache version upgrade - Severity: Outage - StartTime: Aug 29, 2023 13:00 +0000 - EndTime: Aug 29, 2023 17:00 +0000 - CreatedTime: Aug 18, 2023 12:05 +0000 - ResourceName: lhcmon-bnl - Services: - - net.perfSONAR.Bandwidth -# --------------------------------------------------------- -- Class: SCHEDULED - ID: 1573603409 - Description: HTCondor upgrade and dCache version upgrade - Severity: Outage - StartTime: Aug 29, 2023 13:00 +0000 - EndTime: Aug 29, 2023 17:00 +0000 - CreatedTime: Aug 18, 2023 12:05 +0000 - ResourceName: lhcperfmon-bnl - Services: - - net.perfSONAR.Latency -# --------------------------------------------------------- -- Class: SCHEDULED - ID: 1573603410 - Description: HTCondor upgrade and dCache version upgrade - Severity: Outage - StartTime: Aug 29, 2023 13:00 +0000 - EndTime: Aug 29, 2023 17:00 +0000 - CreatedTime: Aug 18, 2023 12:05 +0000 - ResourceName: ps-development - Services: - - net.perfSONAR.Latency -# --------------------------------------------------------- From ec029a63ba12fb9afe839c4eedb72c9aaa516894 Mon Sep 17 00:00:00 2001 From: Mats Rynge Date: Fri, 25 Aug 2023 09:19:56 -0700 Subject: [PATCH 35/49] New project: UTSA_Anantua --- projects/UTSA_Anantua.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 projects/UTSA_Anantua.yaml diff --git a/projects/UTSA_Anantua.yaml b/projects/UTSA_Anantua.yaml new file mode 100644 index 000000000..3b720399d --- /dev/null +++ b/projects/UTSA_Anantua.yaml @@ -0,0 +1,8 @@ +Description: > + I am using Monte Carlo ray-tracing code GRMONTY to create and + compare two different emission models R-Beta and Critical-Beta + of M87 and Sgr A*. https://richardanantua.com/spectra/ +Department: Department of Physics and Astronomy +FieldOfScience: Astronomy and Astrophysics +Organization: University of Texas at San Antonio +PIName: Richard Anantua From e4b7619b0b991230e4c0fa7b8fad2a5d0b2ad097 Mon Sep 17 00:00:00 2001 From: Tim Cartwright Date: Tue, 29 Aug 2023 11:56:17 -0500 Subject: [PATCH 36/49] Put ORU in downtime (FD #74163) --- .../ORU - Computing Group/ORU-Titan_downtime.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 topology/Oral Roberts University/ORU - Computing Group/ORU-Titan_downtime.yaml diff --git a/topology/Oral Roberts University/ORU - Computing Group/ORU-Titan_downtime.yaml b/topology/Oral Roberts University/ORU - Computing Group/ORU-Titan_downtime.yaml new file mode 100644 index 000000000..586709d13 --- /dev/null +++ b/topology/Oral Roberts University/ORU - Computing Group/ORU-Titan_downtime.yaml @@ -0,0 +1,11 @@ +- Class: UNSCHEDULED + ID: 1583274687 + Description: 'Excessive network usage (FD #74163)' + Severity: Outage + StartTime: Aug 28, 2023 23:08 +0000 + EndTime: Jan 01, 2025 04:59 +0000 + CreatedTime: Aug 29, 2023 16:44 +0000 + ResourceName: ORU-Titan-CE1 + Services: + - CE +# --------------------------------------------------------- From 8c792b5002f0bab5cd6ca75ddc42d0f1ef373656 Mon Sep 17 00:00:00 2001 From: Mats Rynge Date: Tue, 29 Aug 2023 10:15:39 -0700 Subject: [PATCH 37/49] Project rename: xenon --- projects/xenon.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 projects/xenon.yaml diff --git a/projects/xenon.yaml b/projects/xenon.yaml new file mode 100644 index 000000000..5a40f8cde --- /dev/null +++ b/projects/xenon.yaml @@ -0,0 +1,17 @@ +Department: Physics +Description: The XENON Dark Matter Experiment located at the Gran Sasso Laboratories + (INFN, Italy), is currently the leader world project searching for the so called + Dark Matter, something which is completely different from ordinary matter. This + Dark Matter is not (as the name hints) visible, but it should pervade the entire + Universe. Its presence has been confirmed by different experimental evidences, however + its intrinsic nature is one of the big puzzle of Modern Physics. The XENON Experiment + could reveal the nature of the DM looking at the possible interactions of the DM + with ordinary matter, for instance with the Xenon, a noble gas been liquified at + very low temperature. The study of the background signal, from the environment and + from the materials that make up the new detector containing the Xenon, is essential + to understand the detector's behavior and its implications on its performances. +FieldOfScience: Astrophysics +Organization: University of Chicago +PIName: Luca Grandi + + From 627341d8bfd99422dfcc34ef940f863f66e864c8 Mon Sep 17 00:00:00 2001 From: Brian Lin Date: Tue, 29 Aug 2023 15:31:57 -0500 Subject: [PATCH 38/49] Add MOLLER IDs and contacts (FD#73358) --- virtual-organizations/MOLLER.yaml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/virtual-organizations/MOLLER.yaml b/virtual-organizations/MOLLER.yaml index 96610eb1a..b3faaee25 100644 --- a/virtual-organizations/MOLLER.yaml +++ b/virtual-organizations/MOLLER.yaml @@ -11,7 +11,7 @@ CertificateOnly: false # If you have an up-to-date local git clone, fill ID with the output from `bin/next_virtual_organization_id` # Otherwise, leave it blank and we will fill in the appropriate value for you. -ID: +ID: 235 # Contacts contain information about people to contact regarding this VO. # The "ID" is a hash of their email address available at https://topology.opensciencegrid.org/miscuser/xml @@ -20,14 +20,18 @@ ID: Contacts: # Administrative Contact is a list of people to contact regarding administrative issues Administrative Contact: - - ID: - Name: + - ID: OSG1000510 + Name: Rakitha S Beminiwattha + - ID: OSG1000460 + Name: Sakib Rahman # - ... # Security Contact is a list of people to contact regarding security issues Security Contact: - - ID: - Name: + - ID: OSG1000510 + Name: Rakitha S Beminiwattha + - ID: OSG1000460 + Name: Sakib Rahman # - ... ### Registration Authority (optional) is a list of people to contact regarding registration issues From c0dd30eaed80a957cbd368ee448ce7b4001a7925 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Tue, 29 Aug 2023 13:50:18 -0700 Subject: [PATCH 39/49] Fixing Address and zipcode Fixing Address and zipcode --- topology/Universidade Estadual Paulista/SPRACE/SITE.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/topology/Universidade Estadual Paulista/SPRACE/SITE.yaml b/topology/Universidade Estadual Paulista/SPRACE/SITE.yaml index 8f9eaa151..2da32c6e3 100644 --- a/topology/Universidade Estadual Paulista/SPRACE/SITE.yaml +++ b/topology/Universidade Estadual Paulista/SPRACE/SITE.yaml @@ -1,6 +1,5 @@ -AddressLine1: "R. Dr. Bento Teobaldo Ferraz 271 - Bl. II - Barra Funda 01140-070 -\ - \ S\xE3o Paulo" -City: São Paulo +AddressLine1: "R. Dr. Bento Teobaldo Ferraz 271 - Bl. II - Barra Funda - Sao Paulo" +City: Sao Paulo Country: Brazil ID: 10017 Latitude: -23.52433 From 8ffc4b85e14fe90044d2e728123d6bbd868c7617 Mon Sep 17 00:00:00 2001 From: Showmic Islam <57932760+showmic09@users.noreply.github.com> Date: Tue, 29 Aug 2023 23:33:54 -0500 Subject: [PATCH 40/49] Create Emory_Pesavento.yaml --- projects/Emory_Pesavento.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 projects/Emory_Pesavento.yaml diff --git a/projects/Emory_Pesavento.yaml b/projects/Emory_Pesavento.yaml new file mode 100644 index 000000000..b259a7bd2 --- /dev/null +++ b/projects/Emory_Pesavento.yaml @@ -0,0 +1,16 @@ +Department: Economics +Description: > + The goal of our research project is to develop a new technique to estimate + impulse response functions in Time-varying-parameters vector autoregressive models + (in short: TVP-VARs). TVP-VARs are particularly useful because, unlike traditional + VAR models, they accounts for changing economic conditions by allowing parameters + to change over time. Estimating impulse responses (one of the main tools in + macroeconomic analysis) in a TVP-VAR requires the implementation of Markov Chain + Montecarlo algorithms (such as Gibbs sampling). This is a computationally demanding + task in a TVP-VAR framework, due to the huge number of parameters to estimate. + However, we could substantially ease such task by using parallel computing + techniques. In this way, we could provide policy makers with a more realistic + and flexible framework use to perform macroeconomic policy evaluation." +FieldOfScience: Economics +Organization: Emory University +PIName: Elena Pesavento From 685a253ae1cf1b85d93e66245546a5ea0db16e46 Mon Sep 17 00:00:00 2001 From: Matyas Selmeci Date: Wed, 30 Aug 2023 08:58:11 -0500 Subject: [PATCH 41/49] Update projects/Emory_Pesavento.yaml --- projects/Emory_Pesavento.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/Emory_Pesavento.yaml b/projects/Emory_Pesavento.yaml index b259a7bd2..cc1dab4db 100644 --- a/projects/Emory_Pesavento.yaml +++ b/projects/Emory_Pesavento.yaml @@ -12,5 +12,5 @@ Description: > techniques. In this way, we could provide policy makers with a more realistic and flexible framework use to perform macroeconomic policy evaluation." FieldOfScience: Economics -Organization: Emory University +Organization: Emory University PIName: Elena Pesavento From e29f9988bd70cbb99c0548e15d6ad7b8ba4f05c8 Mon Sep 17 00:00:00 2001 From: Showmic Islam <57932760+showmic09@users.noreply.github.com> Date: Wed, 30 Aug 2023 13:57:26 -0500 Subject: [PATCH 42/49] Create Vanderbilt_Paquet.yaml --- projects/Vanderbilt_Paquet.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 projects/Vanderbilt_Paquet.yaml diff --git a/projects/Vanderbilt_Paquet.yaml b/projects/Vanderbilt_Paquet.yaml new file mode 100644 index 000000000..d043e4689 --- /dev/null +++ b/projects/Vanderbilt_Paquet.yaml @@ -0,0 +1,8 @@ +Description: > + study the quark-gluon plasma produced in collisions of nuclei. I perform relativistic hydrodynamic simulations of the collisions and + study in particular the production of photons in the collisions. This is my Vanderbilt website: https://as.vanderbilt.edu/physics-astronomy/bio/jean-francois-paquet/ + This is my professional website: https://j-f-paquet.github.io/ +Department: Department of Physics & Astronomy +FieldOfScience: Physics +Organization: Vanderbilt University +PIName: Jean-Francois Paquet From d33d0ede83bd92cf92406f158b8f37a6595def2b Mon Sep 17 00:00:00 2001 From: Brian Lin Date: Wed, 30 Aug 2023 14:14:37 -0500 Subject: [PATCH 43/49] Remove unnecessary ID --- projects/Etown_Wittmeyer.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/projects/Etown_Wittmeyer.yaml b/projects/Etown_Wittmeyer.yaml index 8f19a77fa..d17be6c56 100644 --- a/projects/Etown_Wittmeyer.yaml +++ b/projects/Etown_Wittmeyer.yaml @@ -4,8 +4,6 @@ FieldOfScience: Psychology and Life Sciences Organization: Elizabethtown College PIName: Jennifer Legault Wittmeyer -ID: '591' - Sponsor: CampusGrid: Name: OSG Connect From c867ad9ce8d2de1a42d50956f83f9f65a778ea90 Mon Sep 17 00:00:00 2001 From: Ashton Graves Date: Thu, 31 Aug 2023 10:00:22 -0500 Subject: [PATCH 44/49] Updates fqdn for tacc frontera --- .../Texas Advanced Computing Center/TACC-Frontera.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/University of Texas at Austin/Texas Advanced Computing Center/TACC-Frontera.yaml b/topology/University of Texas at Austin/Texas Advanced Computing Center/TACC-Frontera.yaml index f0d195209..296727d86 100644 --- a/topology/University of Texas at Austin/Texas Advanced Computing Center/TACC-Frontera.yaml +++ b/topology/University of Texas at Austin/Texas Advanced Computing Center/TACC-Frontera.yaml @@ -65,7 +65,7 @@ Resources: ID: 7e5c0c5967de0a65bc78cbbb441a05d70603cabe # FQDN is the fully qualified domain name of the host running this resource - FQDN: tacc-frontera-ce1.services.opensciencegrid.org + FQDN: tacc-frontera-ce1.svc.opensciencegrid.org ### FQDNAliases (optional) are any other DNS aliases by which this host can be accessed # FQDNAliases: # - From 4ce4378d42cdfa3abe929f92573dae8bcddad44f Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Thu, 31 Aug 2023 09:41:29 -0700 Subject: [PATCH 45/49] Changing the main main adm contact Changing the main main adm contact --- .../FermiGrid/FNAL_OSDF.yaml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/topology/Fermi National Accelerator Laboratory/FermiGrid/FNAL_OSDF.yaml b/topology/Fermi National Accelerator Laboratory/FermiGrid/FNAL_OSDF.yaml index b2413f1d3..5d0e14847 100644 --- a/topology/Fermi National Accelerator Laboratory/FermiGrid/FNAL_OSDF.yaml +++ b/topology/Fermi National Accelerator Laboratory/FermiGrid/FNAL_OSDF.yaml @@ -1,6 +1,6 @@ Production: true SupportCenter: Community Support Center -GroupDescription: Fermilab origins used as redirectors for xCache +GroupDescription: Fermilab origins used as redirectors for OSDF cache GroupID: 1354 Resources: FNAL_OSDF_ORIGIN: @@ -10,8 +10,8 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: OSG1000162 - Name: Fabio Andrijauskas + ID: OSG1000528 + Name: Lorena Lobato Pardavila Security Contact: Primary: ID: 28e35fff676197be119af149e37c24b444179d0a @@ -21,5 +21,4 @@ Resources: XRootD origin server: Description: Stash Origin AllowedVOs: - - ANY - + - ANY From 3b6717ad9bbf65d0a64fe66be98c3ad2e88c7f6a Mon Sep 17 00:00:00 2001 From: Mats Rynge Date: Thu, 31 Aug 2023 09:58:04 -0700 Subject: [PATCH 46/49] Correct the org name --- projects/UTSA_Anantua.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/UTSA_Anantua.yaml b/projects/UTSA_Anantua.yaml index 3b720399d..4929f6028 100644 --- a/projects/UTSA_Anantua.yaml +++ b/projects/UTSA_Anantua.yaml @@ -4,5 +4,5 @@ Description: > of M87 and Sgr A*. https://richardanantua.com/spectra/ Department: Department of Physics and Astronomy FieldOfScience: Astronomy and Astrophysics -Organization: University of Texas at San Antonio +Organization: The University of Texas at San Antonio PIName: Richard Anantua From 7da5f4554437de52917d84d33cf93570282c4f27 Mon Sep 17 00:00:00 2001 From: Brian Lin Date: Fri, 1 Sep 2023 11:44:37 -0500 Subject: [PATCH 47/49] Fix the AP40 FQDN The osg-htc.org address is the official one that we present to users --- topology/University of Wisconsin/CHTC/CHTC.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/topology/University of Wisconsin/CHTC/CHTC.yaml b/topology/University of Wisconsin/CHTC/CHTC.yaml index 3bbaa3678..25bf06eb4 100644 --- a/topology/University of Wisconsin/CHTC/CHTC.yaml +++ b/topology/University of Wisconsin/CHTC/CHTC.yaml @@ -521,10 +521,11 @@ Resources: Primary: Name: Aaron Moate ID: OSG1000015 - FQDN: ap40.chtc.wisc.edu + FQDN: ap40.uw.osg-htc.org FQDNAliases: - ap2007.chtc.wisc.edu - ospool-ap2040.chtc.wisc.edu + - ap40.chtc.wisc.edu Services: Submit Node: Description: OS Pool access point From 6abf1de7199fb30fab7946ca8b8d00150696bc5f Mon Sep 17 00:00:00 2001 From: Brian Lin Date: Fri, 1 Sep 2023 12:23:35 -0500 Subject: [PATCH 48/49] Fix PATh contacts --- virtual-organizations/PATh.yaml | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/virtual-organizations/PATh.yaml b/virtual-organizations/PATh.yaml index a9f39bd7b..8af13df2f 100644 --- a/virtual-organizations/PATh.yaml +++ b/virtual-organizations/PATh.yaml @@ -14,12 +14,14 @@ ID: 226 Contacts: # Administrative Contact is a list of people to contact regarding administrative issues Administrative Contact: - - ID: 48e1c2f26dc3479a6cf9b2de7c79d654ac27b1d1 - Name: Miron Livny - ID: OSG1000001 Name: Brian Bockelman - - ID: OSG1000018 - Name: Christina Koch + - ID: OSG1000015 + Name: Aaron Moate + - ID: OSG1000003 + Name: Brian Lin + - ID: OSG1000002 + Name: Matyas Selmeci # Security Contact is a list of people to contact regarding security issues Security Contact: @@ -27,7 +29,22 @@ Contacts: Name: Brian Bockelman - ID: OSG1000015 Name: Aaron Moate + - ID: OSG1000003 + Name: Brian Lin + - ID: OSG1000002 + Name: Matyas Selmeci + VO Manager: + - ID: 48e1c2f26dc3479a6cf9b2de7c79d654ac27b1d1 + Name: Miron Livny + - ID: OSG1000001 + Name: Brian Bockelman + - ID: OSG1000018 + Name: Christina Koch + - ID: OSG1000277 + Name: Todd Tannenbaum + - ID: c412f5f57dca8fe5c73fb3bc4e86bcf243e9edf7 + Name: Frank Wuerthwein ### Credentials (optional) define mappings of auth methods to Unix users for this VO # Credentials: From 8689367601952f3fd5a54ccb460d8426a7216376 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Fri, 1 Sep 2023 12:22:45 -0700 Subject: [PATCH 49/49] Update SingARENSingaporeInfrastructure_downtime.yaml Add downtime for SINGAPORE_INTERNET2_OSDF_CACHE due to transit to final location --- .../SingARENSingaporeInfrastructure_downtime.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/topology/SingAREN/SingARENSingapore/SingARENSingaporeInfrastructure_downtime.yaml b/topology/SingAREN/SingARENSingapore/SingARENSingaporeInfrastructure_downtime.yaml index 6aebec74a..c0333869f 100644 --- a/topology/SingAREN/SingARENSingapore/SingARENSingaporeInfrastructure_downtime.yaml +++ b/topology/SingAREN/SingARENSingapore/SingARENSingaporeInfrastructure_downtime.yaml @@ -9,3 +9,13 @@ Services: - XRootD cache server # --------------------------------------------------------- +- Class: SCHEDULED + ID: 1585960798 + Description: On transit to final location + Severity: Outage + StartTime: Sep 01, 2023 19:30 +0000 + EndTime: Sep 30, 2023 19:30 +0000 + CreatedTime: Sep 01, 2023 19:21 +0000 + ResourceName: SINGAPORE_INTERNET2_OSDF_CACHE + Services: + - XRootD cache server