Skip to content

Commit 4b018a4

Browse files
committed
doc: v0.1.0
1 parent 25930bb commit 4b018a4

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Changelog
2+
3+
## 0.1.0 - 2024-11-20
4+
5+
### 🎉Initial Release

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,19 @@ spec:
5656
kubectl create transient_configmap my-config --from-literal=num=1 --job-name=test-job --job-from=cronjob/a-cronjob
5757
```
5858

59+
## Features
60+
61+
### Flags
62+
63+
| name | description |
64+
|-----------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
65+
| `from-env-file` | Specify the path to a file to read lines of key=val pairs to create a configmap. |
66+
| `from-file` | Key file can be specified using its file path, in which case file basename will be used as configmap key, or optionally with a key and file path, in which case the given key will be used. Specifying a directory will iterate each named file in the directory whose basename is a valid configmap key. |
67+
| `from-literal` | Specify a key and literal value to insert in configmap (i.e. mykey=somevalue) |
68+
| `job-name` | Name of job to be created. required. |
69+
| `job-from` | The name of the resource to create a Job from (only cronjob is supported). |
70+
| `job-image` | Image name to run. |
71+
5972
## Contributing
6073

6174
Feel free to open a PR or an Issue.

cmd/create_transient_configmap.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import (
3232
"strings"
3333
)
3434

35-
const version = "0.1.0-alpha"
35+
const version = "0.1.0"
3636

3737
var (
3838
// transientConfigMapUse is the one-line usage message for the transient_configmap command

0 commit comments

Comments
 (0)