do not include ApiClient* in discovery document. refs #1405 refs #1406
[arvados.git] / config / environments / test.rb
index ca6c44f45cd315c159fb44cc1c0636766f1e102b..2fe43d1e02075a9b2725a2657480cce6199e8e1a 100644 (file)
@@ -37,15 +37,25 @@ Server::Application.configure do
   # Print deprecation notices to the stderr
   config.active_support.deprecation = :stderr
 
+  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
 
+  # No need for SSL while testing
+  config.force_ssl = false
+
   # config.compute_node_nameservers = ['1.2.3.4', '1.2.3.5']
-  require 'net/http'
-  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.compute_node_nameservers = [ "172.16.0.23" ]
 
   config.uuid_prefix('test@' + `hostname`.strip)
+
+  # Authentication stub: hard code pre-approved API tokens.
+  # config.accept_api_token = { rand(2**256).to_s(36) => true }
+  config.accept_api_token = {}
 end