Module: Kontena::Machine::RandomName

Instance Method Summary collapse

Instance Method Details

#generate_nameObject



5
6
7
8
9
# File 'lib/kontena/machine/random_name.rb', line 5

def generate_name
  rnd = Random.rand(64)

  "#{adjectives[rnd%adjectives.length]}-#{nouns[rnd%adjectives.length]}"
end