Skip to content

Commit e13bb04

Browse files
author
olegs-codefresh
committed
rename helm value context to plain-yaml
1 parent 2fbcc5a commit e13bb04

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

examples/helm-values.yaml renamed to examples/plain-yaml.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ owner: account
66
metadata:
77
name: helm-mongo-values
88
spec:
9-
type: helm-plain-text-values
9+
type: plain-yaml
1010
data:
1111
serviceType: LoadBalancer
1212
image: mongo

lib/interface/cli/commands/context/create.cmd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const command = new Command({
1717
})
1818
.positional('type', {
1919
describe: 'Type of the context',
20-
choices: ['config', 'secret', 'helm-repository', 'helm-plain-text-values'],
20+
choices: ['config', 'secret', 'helm-repository', 'plain-yaml'],
2121
})
2222
.option('owner', {
2323
describe: 'Owner of the context',

lib/interface/cli/commands/root/install-chart.cmd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const install = new Command({
4242
required: true,
4343
})
4444
.option('context', {
45-
description: 'Contexts (helm-plain-text-values) to be passed to the install',
45+
description: 'Contexts (plain-yaml) to be passed to the install',
4646
array: true,
4747
})
4848
.option('release-name', {

lib/logic/api/helm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const { sendHttpRequest } = require('./helper');
55
const { getContextByName } = require('./context');
66

77
const SUPPORTED_TYPES = [
8-
'helm-plain-text-values',
8+
'plain-yaml',
99
];
1010

1111

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.5.0",
3+
"version": "0.5.1",
44
"description": "Codefresh command line utility",
55
"main": "index.js",
66
"preferGlobal": true,

0 commit comments

Comments
 (0)