Skip to content

fix typos #549

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/interface/cli/commands/argocd/install.cmd.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const { Runner, components } = require('../../../../binary');
const installArgoCmd = new Command({
root: false,
parent: installRoot,
command: 'argo',
command: 'argocd-agent',
description: 'Install argo agent',
webDocs: {
category: 'Argo',
Expand All @@ -20,13 +20,13 @@ const installArgoCmd = new Command({
describe: 'Codefresh user token',
})
.option('kube-context-name', {
describe: 'Name of the kubernetes context on which monitor should be installed [$CF_ARG_KUBE_CONTEXT_NAME]',
describe: 'Name of the kubernetes context on which argocd-agent should be installed [$CF_ARG_KUBE_CONTEXT_NAME]',
})
.option('url', {
describe: 'Codefresh url, by default https://g.codefresh.io',
})
.option('kube-namespace', {
describe: 'Name of the namespace on which monitor should be installed [$CF_ARG_KUBE_NAMESPACE]',
describe: 'Name of the namespace on which argocd-agent should be installed [$CF_ARG_KUBE_NAMESPACE]',
})
.option('argo-host', {
describe: 'Argocd host, exaple is https://argohost.com',
Expand Down
6 changes: 3 additions & 3 deletions lib/interface/cli/commands/argocd/uninstall.cmd.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const { Runner, components } = require('../../../../binary');
const unInstallAgentCmd = new Command({
root: false,
parent: unInstallRoot,
command: 'argo',
command: 'argocd-agent',
description: 'Uninstall argo agent',
webDocs: {
category: 'Argo',
Expand All @@ -18,10 +18,10 @@ const unInstallAgentCmd = new Command({
builder: yargs => yargs
.env('CF_ARG_') // this means that every process.env.CF_ARG_* will be passed to argv
.option('kube-context-name', {
describe: 'Name of the kubernetes context on which monitor should be uninstalled [$CF_ARG_KUBE_CONTEXT_NAME]',
describe: 'Name of the kubernetes context on which argocd-agent should be uninstalled [$CF_ARG_KUBE_CONTEXT_NAME]',
})
.option('kube-namespace', {
describe: 'Name of the namespace on which monitor should be uninstalled [$CF_ARG_KUBE_NAMESPACE]',
describe: 'Name of the namespace on which argocd-agent should be uninstalled [$CF_ARG_KUBE_NAMESPACE]',
}),
handler: async (argv) => {
const {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codefresh",
"version": "0.72.0",
"version": "0.72.1",
"description": "Codefresh command line utility",
"main": "index.js",
"preferGlobal": true,
Expand Down