-
-
Notifications
You must be signed in to change notification settings - Fork 289
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Wrap help message, add single-letter aliases
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
- Loading branch information
Showing
6 changed files
with
13 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,10 +37,12 @@ type inputData struct { | |
//MakeInstallOpenFaaSIngess will install a clusterissuer and request a cert from certmanager for the domain you specify | ||
func MakeInstallOpenFaaSIngress() *cobra.Command { | ||
var openfaasIngress = &cobra.Command{ | ||
Use: "openfaas-ingress", | ||
Short: "Install openfaas ingress with TLS", | ||
Long: `Install openfaas ingress. Requires cert-manager 0.11.0 or higher installation in the cluster. Please set --domain to your custom domain and set --email to your email - this email is used by letsencrypt for domain expiry etc.`, | ||
Example: ` arkade install openfaas-ingress --domain openfaas.example.com --email [email protected]`, | ||
Use: "openfaas-ingress", | ||
Short: "Install openfaas ingress with TLS", | ||
Long: `Install openfaas ingress. Requires cert-manager 1.0.0+ the cluster.`, | ||
Example: ` arkade install openfaas-ingress \ | ||
--domain openfaas.example.com \ | ||
--email [email protected]`, | ||
SilenceUsage: true, | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters