Sha256: 4f08932f82e80b775007daf7f88edcdf909f2673c339060d63f99e786bc719ab
Contents?: true
Size: 958 Bytes
Versions: 105
Compression:
Stored size: 958 Bytes
Contents
module Kontena::Cli::Certificate class GetCommand < Kontena::Command include Kontena::Cli::Common include Kontena::Cli::GridOptions 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 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
105 entries across 105 versions & 1 rubygems