From 86f302962a56828dd914351b8910c180ceeed277 Mon Sep 17 00:00:00 2001 From: elijah Date: Thu, 26 May 2016 11:50:33 -0700 Subject: fix typo that prevented common.ENV.json from being loaded. closes #7697 --- platform.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'platform.rb') diff --git a/platform.rb b/platform.rb index 1e19a2a9..61fb50ce 100644 --- a/platform.rb +++ b/platform.rb @@ -45,7 +45,7 @@ Leap::Platform.define do :node_config => 'nodes/#{arg}.json', # input config files, environmentally scoped - :common_env_config => 'commmon.#{arg}.json', + :common_env_config => 'common.#{arg}.json', :provider_env_config => 'provider.#{arg}.json', :service_env_config => 'services/#{arg[0]}.#{arg[1]}.json', :tag_env_config => 'tags/#{arg[0]}.#{arg[1]}.json', -- cgit v1.2.3 From 050858ff79d558674e3f48dcd72d4dec2510c19f Mon Sep 17 00:00:00 2001 From: elijah Date: Wed, 22 Jun 2016 01:25:36 -0700 Subject: set the platform version to be 0.9, require leap_cli 1.9 --- platform.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'platform.rb') diff --git a/platform.rb b/platform.rb index 61fb50ce..c79a15d8 100644 --- a/platform.rb +++ b/platform.rb @@ -4,8 +4,8 @@ # Leap::Platform.define do - self.version = "0.8" - self.compatible_cli = "1.8".."1.99" + self.version = "0.9" + self.compatible_cli = "1.9".."1.99" # # the facter facts that should be gathered -- cgit v1.2.3 From 205b61dfe721e6d88fc06b050a0497eeb35f4e02 Mon Sep 17 00:00:00 2001 From: elijah Date: Thu, 21 Jul 2016 00:55:12 -0700 Subject: added 'leap vm' command --- platform.rb | 1 + 1 file changed, 1 insertion(+) (limited to 'platform.rb') diff --git a/platform.rb b/platform.rb index c79a15d8..9f5e7bfd 100644 --- a/platform.rb +++ b/platform.rb @@ -42,6 +42,7 @@ Leap::Platform.define do :tag_config => 'tags/#{arg}.json', :template_config => 'templates/#{arg}.json', :secrets_config => 'secrets.json', + :cloud_config => 'cloud.json', :node_config => 'nodes/#{arg}.json', # input config files, environmentally scoped -- cgit v1.2.3 From 030ae6c324b1c8dde9a6eef3baa0b6c45c982110 Mon Sep 17 00:00:00 2001 From: elijah Date: Mon, 29 Aug 2016 14:05:51 -0700 Subject: command line interface cleanup: harmonize the signatures of different commands to be more logically consistent. For now, all changes are backwards compatible. DEPRECATED: `leap add-user`. Use `leap user add` instead. --- platform.rb | 1 + 1 file changed, 1 insertion(+) (limited to 'platform.rb') diff --git a/platform.rb b/platform.rb index 9f5e7bfd..5a286589 100644 --- a/platform.rb +++ b/platform.rb @@ -66,6 +66,7 @@ Leap::Platform.define do # output files :facts => 'facts.json', + :user_dir => 'users/#{arg}', :user_ssh => 'users/#{arg}/#{arg}_ssh.pub', :user_pgp => 'users/#{arg}/#{arg}_pgp.pub', :known_hosts => 'files/ssh/known_hosts', -- cgit v1.2.3 From 8116e007cfd4dbee8282247348cf45473dcde45e Mon Sep 17 00:00:00 2001 From: elijah Date: Wed, 31 Aug 2016 14:54:46 -0700 Subject: added support for Let's Encrypt --- platform.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'platform.rb') diff --git a/platform.rb b/platform.rb index 5a286589..2ff0a27f 100644 --- a/platform.rb +++ b/platform.rb @@ -78,6 +78,8 @@ Leap::Platform.define do :client_ca_key => 'files/ca/client_ca.key', :client_ca_cert => 'files/ca/client_ca.crt', :dh_params => 'files/ca/dh.pem', + :acme_key => 'files/ca/lets-encrypt-account.key', + :acme_info => 'files/ca/lets-encrypt-account.json', :commercial_key => 'files/cert/#{arg}.key', :commercial_csr => 'files/cert/#{arg}.csr', :commercial_cert => 'files/cert/#{arg}.crt', -- cgit v1.2.3