Skip to content

Commit 099a7ac

Browse files
authored
chore: add values schema (#11)
resolves issue #5
1 parent 4035590 commit 099a7ac

File tree

4 files changed

+588
-11
lines changed

4 files changed

+588
-11
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ helm repo update
2525

2626
### List Available Operaton Versions
2727

28-
To check the available versions of the Operaton BPM chart, use the following command:
28+
To check the available versions of the Operaton chart, use the following command:
2929

3030
```shell
3131
helm search repo operaton --devel
@@ -35,7 +35,7 @@ The output should be something like:
3535

3636
```
3737
NAME CHART VERSION APP VERSION DESCRIPTION
38-
operaton/operaton 1.0.2 1.0.0-beta-3 Helm chart for Operaton
38+
operaton/operaton 1.0.3 1.0.0-beta-3 Helm chart for Operaton
3939
```
4040

4141
Note: The `--devel` flag includes development versions in the search results. Without this flag, only stable versions will be listed.
@@ -45,19 +45,19 @@ Note: The `--devel` flag includes development versions in the search results. Wi
4545
To install a specific version from the list above, use:
4646

4747
```shell
48-
helm install operaton operaton/operaton --version 1.0.2
48+
helm install operaton operaton/operaton --version 1.0.3
4949
```
5050

5151
In this example:
5252

53-
* The Operaton BPM chart will be installed under the release name `operaton`
54-
* The version `1.0.2` will be used
53+
* The Operaton chart will be installed under the release name `operaton`
54+
* The version `1.0.3` will be used
5555
* The installation will take place in the `default` namespace.
5656

5757
To install the chart in a specific namespace, add the `-n YOUR_NAMESPACE` flag:
5858

5959
```shell
60-
helm install operaton operaton/operaton --version 1.0.2 -n YOUR_NAMESPACE
60+
helm install operaton operaton/operaton --version 1.0.3 -n YOUR_NAMESPACE
6161
```
6262

6363
### Verify the Installation
@@ -70,7 +70,7 @@ You should be able to see your chart installed having the status `deployed` like
7070

7171
```
7272
NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION
73-
operaton default 1 2025-02-28 10:20:34.586319 +0100 CET deployed operaton-1.0.2 1.0.0-beta-3
73+
operaton default 1 2025-02-28 10:20:34.586319 +0100 CET deployed operaton-1.0.3 1.0.0-beta-3
7474
```
7575

7676
### Uninstall the chart

README.tpl.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ helm repo update
2525

2626
### List Available Operaton Versions
2727

28-
To check the available versions of the Operaton BPM chart, use the following command:
28+
To check the available versions of the Operaton chart, use the following command:
2929

3030
```shell
3131
helm search repo operaton --devel
@@ -35,7 +35,7 @@ The output should be something like:
3535

3636
```
3737
NAME CHART VERSION APP VERSION DESCRIPTION
38-
operaton/operaton {{ CHART_VERSION }} 1.0.0-beta-3 Helm chart for Operaton BPM
38+
operaton/operaton {{ CHART_VERSION }} 1.0.0-beta-3 Helm chart for Operaton
3939
```
4040

4141
Note: The `--devel` flag includes development versions in the search results. Without this flag, only stable versions will be listed.
@@ -50,7 +50,7 @@ helm install operaton operaton/operaton --version {{ CHART_VERSION }}
5050

5151
In this example:
5252

53-
* The Operaton BPM chart will be installed under the release name `operaton`
53+
* The Operaton chart will be installed under the release name `operaton`
5454
* The version `{{ CHART_VERSION }}` will be used
5555
* The installation will take place in the `default` namespace.
5656

charts/operaton/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: operaton
33
description: |
44
Helm chart for Operaton
55
type: application
6-
version: 1.0.2
6+
version: 1.0.3
77
appVersion: 1.0.0-beta-3
88
keywords:
99
- bpm

0 commit comments

Comments
 (0)