Skip to content

Commit b8f7164

Browse files
committed
Drop Storage.se_available (OSG_STORAGE_ELEMENT) (SOFTWARE-3011)
1 parent 52daa25 commit b8f7164

File tree

14 files changed

+6
-65
lines changed

14 files changed

+6
-65
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,6 @@ This section is contained in `/etc/osg/config.d/10-storage.ini` which is provide
170170

171171
| Option | Values Accepted | Explanation |
172172
|------------------|-----------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
173-
| **se_available** | `True`, `False` | This indicates whether there is an associated SE available. |
174173
| **grid_dir** | String | This setting should point to the directory which holds the files from the OSG worker node package. See note |
175174
| **app_dir** | String | This setting should point to the directory which contains the VO specific applications. See note |
176175
| data_dir | String | This setting should point to a directory that can be used to store and stage data in and out of the cluster. See note |

config/10-storage.ini

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@
1010
; Please refer to the OSG release documentation for an in-depth explanation
1111
; of the various storage models and the requirements for them
1212

13-
; If you have a SE available for your cluster and wish to make it available
14-
; to incoming jobs, set se_available to True, otherwise set it to False
15-
se_available = FALSE
16-
1713
; The grid_dir setting should point to the directory which holds the files
1814
; from the OSG worker node package, it should be visible on all of the computer
1915
; nodes (read access is required, worker nodes don't need to be able to write)

osg_configure/configure_modules/storage.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,7 @@ def __init__(self, *args, **kwargs):
2121
super().__init__(*args, **kwargs)
2222
self.logger = logging.getLogger(__name__)
2323
self.log('StorageConfiguration.__init__ started')
24-
self.options = {'se_available':
25-
configfile.Option(name='se_available',
26-
opt_type=bool,
27-
default_value=False,
28-
mapping='OSG_STORAGE_ELEMENT'),
29-
'grid_dir':
24+
self.options = {'grid_dir':
3025
configfile.Option(name='grid_dir',
3126
default_value='/etc/osg/wn-client',
3227
required=configfile.Option.OPTIONAL,
@@ -84,6 +79,7 @@ def parse_configuration(self, configuration):
8479

8580
self.get_options(configuration, ignore_options=[
8681
"default_se",
82+
"se_available",
8783
])
8884
self.log('StorageConfiguration.parse_configuration completed')
8985

scripts/osg-configure

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ DEFAULT_JOB_ENVIRONMENT_ATTRIBUTES = ['OSG_SITE_NAME',
3030
'OSG_APP',
3131
'OSG_DATA',
3232
'OSG_WN_TMP',
33-
'OSG_STORAGE_ELEMENT',
3433
'OSG_SITE_READ',
3534
'OSG_SITE_WRITE',
3635
'OSG_SQUID_LOCATION',

tests/configs/config-ce-condor.d/10-storage.ini

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@
1010
; Please refer to the OSG release documentation for an indepth explanation
1111
; of the various storage models and the requirements for them
1212

13-
; If you have a SE available for your cluster and wish to make it available
14-
; to incoming jobs, set se_available to True, otherwise set it to False
15-
se_available = FALSE
16-
1713
; The grid_dir setting should point to the directory which holds the files
1814
; from the OSG worker node package, it should be visible on all of the computer
1915
; nodes (read access is required, worker nodes don't need to be able to write)

tests/configs/config-ce-lsf.d/10-storage.ini

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@
1010
; Please refer to the OSG release documentation for an indepth explanation
1111
; of the various storage models and the requirements for them
1212

13-
; If you have a SE available for your cluster and wish to make it available
14-
; to incoming jobs, set se_available to True, otherwise set it to False
15-
se_available = FALSE
16-
1713
; The grid_dir setting should point to the directory which holds the files
1814
; from the OSG worker node package, it should be visible on all of the computer
1915
; nodes (read access is required, worker nodes don't need to be able to write)

tests/configs/config-ce-pbs.d/10-storage.ini

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@
1010
; Please refer to the OSG release documentation for an indepth explanation
1111
; of the various storage models and the requirements for them
1212

13-
; If you have a SE available for your cluster and wish to make it available
14-
; to incoming jobs, set se_available to True, otherwise set it to False
15-
se_available = FALSE
16-
1713
; The grid_dir setting should point to the directory which holds the files
1814
; from the OSG worker node package, it should be visible on all of the computer
1915
; nodes (read access is required, worker nodes don't need to be able to write)

tests/configs/config-ce-sge.d/10-storage.ini

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@
1010
; Please refer to the OSG release documentation for an indepth explanation
1111
; of the various storage models and the requirements for them
1212

13-
; If you have a SE available for your cluster and wish to make it available
14-
; to incoming jobs, set se_available to True, otherwise set it to False
15-
se_available = FALSE
16-
1713
; The grid_dir setting should point to the directory which holds the files
1814
; from the OSG worker node package, it should be visible on all of the computer
1915
; nodes (read access is required, worker nodes don't need to be able to write)

tests/configs/config-nonce.d/10-storage.ini

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@
1010
; Please refer to the OSG release documentation for an indepth explanation
1111
; of the various storage models and the requirements for them
1212

13-
; If you have a SE available for your cluster and wish to make it available
14-
; to incoming jobs, set se_available to True, otherwise set it to False
15-
se_available = FALSE
16-
1713
; The grid_dir setting should point to the directory which holds the files
1814
; from the OSG worker node package, it should be visible on all of the computer
1915
; nodes (read access is required, worker nodes don't need to be able to write)

tests/configs/storage/oasis.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
enabled = True
33

44
[Storage]
5-
se_available = False
65
grid_dir = /etc
76
app_dir = /cvmfs/oasis.opensciencegrid.org
87
data_dir = UNAVAILABLE

0 commit comments

Comments
 (0)