Sha256: 693bb03239566b0f8c64cf859b0947cb27a1b06917a08846ecc65c4bb8130096
Contents?: true
Size: 1.1 KB
Versions: 2
Compression:
Stored size: 1.1 KB
Contents
module Kontena::Cli::Certificate class GetCommand < Kontena::Command include Kontena::Cli::Common include Kontena::Cli::GridOptions BANNER = Kontena.pastel.yellow("[DEPRECATED] This command is now deprecated in favor of 'kontena certificate request' command") banner BANNER option '--secret-name', 'SECRET_NAME', 'The name for the secret to store the certificate in' option '--cert-type', 'CERT_TYPE', 'The type of certificate to get: fullchain, chain or cert', default: 'fullchain' parameter "DOMAIN ...", "Domain(s) to get certificate for" def execute warn BANNER require_api_url token = require_token secret = secret_name || "LE_CERTIFICATE_#{domain_list[0].gsub('.', '_')}" data = {domains: domain_list, secret_name: secret} response = client(token).post("certificates/#{current_grid}/certificate", data) puts "Certificate successfully received and stored into vault with keys:" response.each do |secret| puts secret.colorize(:green) end puts "Use the #{secret}_BUNDLE with Kontena loadbalancer!" end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
kontena-cli-1.4.3 | lib/kontena/cli/certificate/get_command.rb |
kontena-cli-1.4.3.rc1 | lib/kontena/cli/certificate/get_command.rb |