Skip to content

Owens -> Cardinal migration technical debt #283

@johrstrom

Description

@johrstrom

We're removing the Owens cluster shortly. Right now I'm going to remove all Owens myjobs templates. Most have pitzer variants that we'll keep. These however, do not have pitzer variants and will be removed entirely soon.

Once we decide to take on this work - this ticket is to create Cardinal templates for these - i.e., Basic_ABAQUS_Job_Cardinal and so on.
Of course these are being removed int he main branch, but one could still find all these templates by looking at the last tag that has them (v170 has them).

Basic_ABAQUS_Job_Owens
Basic_AMBER_Job_Owens
Basic_ANSYS_CFX_Job_Owens
Basic_ANSYS_Mechanical_Owens
Basic_COMSOL_Parallel_Job_Owens
Basic_COMSOL_Serial_Job_Owens
Basic_ANSYS_Fluent_Parallel_Job_Owens
Basic_GROMACS_Parallel_Job_Owens
Basic_Octave_Owens
Basic_ANSYS_Fluent_Serial_Job_Owens
Basic_Star-CCM_Parallel_Job_Owens
Basic_Star-CCM_Serial_Job_Owens
Simple_OMP_MPI_Job_Owens

I generated this list with a simple ruby program

base = 'ondemand.osc.edu/apps/myjobs/templates/'
children = Dir.children(base)

children.each do |child|
  if child.to_s.end_with?('Owens')
    
    pitzer_variant = children.include?(child.gsub('Owens', 'Pitzer'))
    puts child unless pitzer_variant
  end
end

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions