X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/428771b6b8d9ad81c678b8ac00d8bfed66d5ff73..fb1d42add817ea57e391c9aeb8e6b9e4d35ad2fd:/config/environments/production.rb diff --git a/config/environments/production.rb b/config/environments/production.rb index 4d47ba4207..182c6a3aac 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -58,8 +58,14 @@ Server::Application.configure do # Send deprecation notices to registered listeners config.active_support.deprecation = :notify + config.whjobmanager_wrapper = :slurm_immediate + # config.dnsmasq_conf_dir = '/etc/dnsmasq.d' + # config.compute_node_ami = 'ami-cbca41a2' + # config.compute_node_security_group = 'orvos-compute' + # config.compute_node_spot_bid = 0.11 + # config.compute_node_domain = `hostname --domain`.strip # config.compute_node_nameservers = ['1.2.3.4', '1.2.3.5'] @@ -67,4 +73,10 @@ Server::Application.configure do config.compute_node_nameservers = ['local', 'public'].collect do |iface| Net::HTTP.get(URI("http://169.254.169.254/latest/meta-data/#{iface}-ipv4")).match(/^[\d\.]+$/)[0] end << '172.16.0.23' + + config.uuid_prefix = Digest::MD5.hexdigest('cfi-aws-0').to_i(16).to_s(36)[0..4] # '9ujm1' + + # Authentication stub: hard code pre-approved API tokens. + # config.accept_api_token = { rand(2**256).to_s(36) => true } + config.accept_api_token = {} end