Skip to content

Commit 5a53839

Browse files
fix typos (#549)
* fix typos * bump version
1 parent 3301091 commit 5a53839

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

lib/interface/cli/commands/argocd/install.cmd.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const { Runner, components } = require('../../../../binary');
77
const installArgoCmd = new Command({
88
root: false,
99
parent: installRoot,
10-
command: 'argo',
10+
command: 'argocd-agent',
1111
description: 'Install argo agent',
1212
webDocs: {
1313
category: 'Argo',
@@ -20,13 +20,13 @@ const installArgoCmd = new Command({
2020
describe: 'Codefresh user token',
2121
})
2222
.option('kube-context-name', {
23-
describe: 'Name of the kubernetes context on which monitor should be installed [$CF_ARG_KUBE_CONTEXT_NAME]',
23+
describe: 'Name of the kubernetes context on which argocd-agent should be installed [$CF_ARG_KUBE_CONTEXT_NAME]',
2424
})
2525
.option('url', {
2626
describe: 'Codefresh url, by default https://g.codefresh.io',
2727
})
2828
.option('kube-namespace', {
29-
describe: 'Name of the namespace on which monitor should be installed [$CF_ARG_KUBE_NAMESPACE]',
29+
describe: 'Name of the namespace on which argocd-agent should be installed [$CF_ARG_KUBE_NAMESPACE]',
3030
})
3131
.option('argo-host', {
3232
describe: 'Argocd host, exaple is https://argohost.com',

lib/interface/cli/commands/argocd/uninstall.cmd.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const { Runner, components } = require('../../../../binary');
88
const unInstallAgentCmd = new Command({
99
root: false,
1010
parent: unInstallRoot,
11-
command: 'argo',
11+
command: 'argocd-agent',
1212
description: 'Uninstall argo agent',
1313
webDocs: {
1414
category: 'Argo',
@@ -18,10 +18,10 @@ const unInstallAgentCmd = new Command({
1818
builder: yargs => yargs
1919
.env('CF_ARG_') // this means that every process.env.CF_ARG_* will be passed to argv
2020
.option('kube-context-name', {
21-
describe: 'Name of the kubernetes context on which monitor should be uninstalled [$CF_ARG_KUBE_CONTEXT_NAME]',
21+
describe: 'Name of the kubernetes context on which argocd-agent should be uninstalled [$CF_ARG_KUBE_CONTEXT_NAME]',
2222
})
2323
.option('kube-namespace', {
24-
describe: 'Name of the namespace on which monitor should be uninstalled [$CF_ARG_KUBE_NAMESPACE]',
24+
describe: 'Name of the namespace on which argocd-agent should be uninstalled [$CF_ARG_KUBE_NAMESPACE]',
2525
}),
2626
handler: async (argv) => {
2727
const {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codefresh",
3-
"version": "0.72.0",
3+
"version": "0.72.1",
44
"description": "Codefresh command line utility",
55
"main": "index.js",
66
"preferGlobal": true,

0 commit comments

Comments
 (0)