Skip to content
This repository was archived by the owner on Mar 13, 2021. It is now read-only.

Commit e4e6ac6

Browse files
committed
Preparing for 0.0.6 release
1 parent 52010fb commit e4e6ac6

6 files changed

+55
-55
lines changed

README.md

+26-26
Original file line numberDiff line numberDiff line change
@@ -237,23 +237,23 @@ riff init node [flags]
237237
#### Options
238238

239239
```
240-
-h, --help help for node
241-
--invoker-version string the version of invoker to use when building containers (default "0.0.6-snapshot")
240+
-h, --help help for node
242241
```
243242

244243
#### Options inherited from parent commands
245244

246245
```
247-
-a, --artifact string path to the function artifact, source code or jar file
248-
--config string config file (default is $HOME/.riff.yaml)
249-
--dry-run print generated function artifacts content to stdout only
250-
-f, --filepath string path or directory used for the function resources (defaults to the current directory)
251-
--force overwrite existing functions artifacts
252-
-i, --input string the name of the input topic (defaults to function name)
253-
-n, --name string the name of the function (defaults to the name of the current directory)
254-
-o, --output string the name of the output topic (optional)
255-
-u, --useraccount string the Docker user account to be used for the image repository (default "current OS user")
256-
-v, --version string the version of the function image (default "0.0.1")
246+
-a, --artifact string path to the function artifact, source code or jar file
247+
--config string config file (default is $HOME/.riff.yaml)
248+
--dry-run print generated function artifacts content to stdout only
249+
-f, --filepath string path or directory used for the function resources (defaults to the current directory)
250+
--force overwrite existing functions artifacts
251+
-i, --input string the name of the input topic (defaults to function name)
252+
--invoker-version string the version of the invoker to use when building containers
253+
-n, --name string the name of the function (defaults to the name of the current directory)
254+
-o, --output string the name of the output topic (optional)
255+
-u, --useraccount string the Docker user account to be used for the image repository (default "current OS user")
256+
-v, --version string the version of the function image (default "0.0.1")
257257
```
258258

259259
#### SEE ALSO
@@ -286,25 +286,25 @@ riff create node [flags]
286286
#### Options
287287

288288
```
289-
-h, --help help for node
290-
--invoker-version string the version of invoker to use when building containers (default "0.0.6-snapshot")
291-
--namespace string the namespace used for the deployed resources (defaults to kubectl's default)
292-
--push push the image to Docker registry
289+
-h, --help help for node
290+
--namespace string the namespace used for the deployed resources (defaults to kubectl's default)
291+
--push push the image to Docker registry
293292
```
294293

295294
#### Options inherited from parent commands
296295

297296
```
298-
-a, --artifact string path to the function artifact, source code or jar file
299-
--config string config file (default is $HOME/.riff.yaml)
300-
--dry-run print generated function artifacts content to stdout only
301-
-f, --filepath string path or directory used for the function resources (defaults to the current directory)
302-
--force overwrite existing functions artifacts
303-
-i, --input string the name of the input topic (defaults to function name)
304-
-n, --name string the name of the function (defaults to the name of the current directory)
305-
-o, --output string the name of the output topic (optional)
306-
-u, --useraccount string the Docker user account to be used for the image repository (default "current OS user")
307-
-v, --version string the version of the function image (default "0.0.1")
297+
-a, --artifact string path to the function artifact, source code or jar file
298+
--config string config file (default is $HOME/.riff.yaml)
299+
--dry-run print generated function artifacts content to stdout only
300+
-f, --filepath string path or directory used for the function resources (defaults to the current directory)
301+
--force overwrite existing functions artifacts
302+
-i, --input string the name of the input topic (defaults to function name)
303+
--invoker-version string the version of the invoker to use when building containers
304+
-n, --name string the name of the function (defaults to the name of the current directory)
305+
-o, --output string the name of the output topic (optional)
306+
-u, --useraccount string the Docker user account to be used for the image repository (default "current OS user")
307+
-v, --version string the version of the function image (default "0.0.1")
308308
```
309309

310310
#### SEE ALSO

docs/riff_create_node.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -21,25 +21,25 @@ riff create node [flags]
2121
### Options
2222

2323
```
24-
-h, --help help for node
25-
--invoker-version string the version of invoker to use when building containers (default "0.0.6-snapshot")
26-
--namespace string the namespace used for the deployed resources (defaults to kubectl's default)
27-
--push push the image to Docker registry
24+
-h, --help help for node
25+
--namespace string the namespace used for the deployed resources (defaults to kubectl's default)
26+
--push push the image to Docker registry
2827
```
2928

3029
### Options inherited from parent commands
3130

3231
```
33-
-a, --artifact string path to the function artifact, source code or jar file
34-
--config string config file (default is $HOME/.riff.yaml)
35-
--dry-run print generated function artifacts content to stdout only
36-
-f, --filepath string path or directory used for the function resources (defaults to the current directory)
37-
--force overwrite existing functions artifacts
38-
-i, --input string the name of the input topic (defaults to function name)
39-
-n, --name string the name of the function (defaults to the name of the current directory)
40-
-o, --output string the name of the output topic (optional)
41-
-u, --useraccount string the Docker user account to be used for the image repository (default "current OS user")
42-
-v, --version string the version of the function image (default "0.0.1")
32+
-a, --artifact string path to the function artifact, source code or jar file
33+
--config string config file (default is $HOME/.riff.yaml)
34+
--dry-run print generated function artifacts content to stdout only
35+
-f, --filepath string path or directory used for the function resources (defaults to the current directory)
36+
--force overwrite existing functions artifacts
37+
-i, --input string the name of the input topic (defaults to function name)
38+
--invoker-version string the version of the invoker to use when building containers
39+
-n, --name string the name of the function (defaults to the name of the current directory)
40+
-o, --output string the name of the output topic (optional)
41+
-u, --useraccount string the Docker user account to be used for the image repository (default "current OS user")
42+
-v, --version string the version of the function image (default "0.0.1")
4343
```
4444

4545
### SEE ALSO

docs/riff_init_node.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -21,23 +21,23 @@ riff init node [flags]
2121
### Options
2222

2323
```
24-
-h, --help help for node
25-
--invoker-version string the version of invoker to use when building containers (default "0.0.6-snapshot")
24+
-h, --help help for node
2625
```
2726

2827
### Options inherited from parent commands
2928

3029
```
31-
-a, --artifact string path to the function artifact, source code or jar file
32-
--config string config file (default is $HOME/.riff.yaml)
33-
--dry-run print generated function artifacts content to stdout only
34-
-f, --filepath string path or directory used for the function resources (defaults to the current directory)
35-
--force overwrite existing functions artifacts
36-
-i, --input string the name of the input topic (defaults to function name)
37-
-n, --name string the name of the function (defaults to the name of the current directory)
38-
-o, --output string the name of the output topic (optional)
39-
-u, --useraccount string the Docker user account to be used for the image repository (default "current OS user")
40-
-v, --version string the version of the function image (default "0.0.1")
30+
-a, --artifact string path to the function artifact, source code or jar file
31+
--config string config file (default is $HOME/.riff.yaml)
32+
--dry-run print generated function artifacts content to stdout only
33+
-f, --filepath string path or directory used for the function resources (defaults to the current directory)
34+
--force overwrite existing functions artifacts
35+
-i, --input string the name of the input topic (defaults to function name)
36+
--invoker-version string the version of the invoker to use when building containers
37+
-n, --name string the name of the function (defaults to the name of the current directory)
38+
-o, --output string the name of the output topic (optional)
39+
-u, --useraccount string the Docker user account to be used for the image repository (default "current OS user")
40+
-v, --version string the version of the function image (default "0.0.1")
4141
```
4242

4343
### SEE ALSO

node-invoker.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ kind: Invoker
44
metadata:
55
name: node
66
spec:
7-
version: 0.0.6-snapshot
7+
version: 0.0.6
88
matchers:
99
- package.json
1010
- "*.js"

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@projectriff/node-function-invoker",
3-
"version": "0.0.6-snapshot",
3+
"version": "0.0.6",
44
"author": "Eric Bottard",
55
"license": "Apache-2.0",
66
"description": "node function invoker for riff",

0 commit comments

Comments
 (0)