Skip to content

Commit

Permalink
Removed commented code
Browse files Browse the repository at this point in the history
  • Loading branch information
alessandrothea committed Aug 18, 2023
1 parent c27c040 commit dfc5cb2
Showing 1 changed file with 0 additions and 50 deletions.
50 changes: 0 additions & 50 deletions src/nanorc/k8spm.py
Original file line number Diff line number Diff line change
Expand Up @@ -429,31 +429,6 @@ def create_daqapp_pod(
for mount in app_boot_info['mounted_dirs']
]
)
# + (
# [
# client.V1VolumeMount(
# mount_path = "/cvmfs/dunedaq.opensciencegrid.org",
# name = "dunedaq-cvmfs",
# read_only = True)
# ]
# if self.mount_cvmfs else []
# ) + (
# [
# client.V1VolumeMount(
# mount_path = "/cvmfs/dunedaq-development.opensciencegrid.org",
# name = "dunedaq-dev-cvmfs",
# read_only = True)
# ]
# if self.mount_cvmfs else []
# ) + (
# [
# client.V1VolumeMount(
# mount_path = "/dunedaq/pocket",
# name = "pocket",
# read_only = False)
# ]
# if self.cluster_config.is_kind else []
# )
)
)
],
Expand All @@ -467,31 +442,6 @@ def create_daqapp_pod(
for mount in app_boot_info['mounted_dirs']
]
)
# + (
# [
# client.V1Volume(
# name = "dunedaq-cvmfs",
# host_path = client.V1HostPathVolumeSource(
# path = '/cvmfs/dunedaq.opensciencegrid.org'))
# ]
# if self.mount_cvmfs else []
# ) + (
# [
# client.V1Volume(
# name = "dunedaq-dev-cvmfs",
# host_path = client.V1HostPathVolumeSource(
# path = '/cvmfs/dunedaq-development.opensciencegrid.org'))
# ]
# if self.mount_cvmfs else []
# ) + (
# [
# client.V1Volume(
# name = "pocket",
# host_path = client.V1HostPathVolumeSource(
# path = '/pocket'))
# ]
# if self.cluster_config.is_kind else []
# )
)
)
)
Expand Down

0 comments on commit dfc5cb2

Please sign in to comment.