Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ The output should be something like:

```
NAME CHART VERSION APP VERSION DESCRIPTION
operaton/operaton 1.0.3 1.0.0-beta-3 Helm chart for Operaton
operaton/operaton 1.0.4 1.0.0-beta-4 Helm chart for Operaton
```

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

```shell
helm install operaton operaton/operaton --version 1.0.3
helm install operaton operaton/operaton --version 1.0.4
```

In this example:

* The Operaton chart will be installed under the release name `operaton`
* The version `1.0.3` will be used
* The version `1.0.4` will be used
* The installation will take place in the `default` namespace.

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

```shell
helm install operaton operaton/operaton --version 1.0.3 -n YOUR_NAMESPACE
helm install operaton operaton/operaton --version 1.0.4 -n YOUR_NAMESPACE
```

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

```
NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION
operaton default 1 2025-02-28 10:20:34.586319 +0100 CET deployed operaton-1.0.3 1.0.0-beta-3
operaton default 1 2025-02-28 10:20:34.586319 +0100 CET deployed operaton-1.0.4 1.0.0-beta-4
```

### Uninstall the chart
Expand Down
4 changes: 2 additions & 2 deletions README.tpl.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ The output should be something like:

```
NAME CHART VERSION APP VERSION DESCRIPTION
operaton/operaton {{ CHART_VERSION }} 1.0.0-beta-3 Helm chart for Operaton
operaton/operaton {{ CHART_VERSION }} 1.0.0-beta-4 Helm chart for Operaton
```

Note: The `--devel` flag includes development versions in the search results. Without this flag, only stable versions will be listed.
Expand Down Expand Up @@ -70,7 +70,7 @@ You should be able to see your chart installed having the status `deployed` like

```
NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION
operaton default 1 2025-02-28 10:20:34.586319 +0100 CET deployed operaton-{{ CHART_VERSION }} 1.0.0-beta-3
operaton default 1 2025-02-28 10:20:34.586319 +0100 CET deployed operaton-{{ CHART_VERSION }} 1.0.0-beta-4
```

### Uninstall the chart
Expand Down
4 changes: 2 additions & 2 deletions charts/operaton/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: operaton
description: |
Helm chart for Operaton
type: application
version: 1.0.3
appVersion: 1.0.0-beta-3
version: 1.0.4
appVersion: 1.0.0-beta-4
keywords:
- bpm
- bpmn
Expand Down
4 changes: 2 additions & 2 deletions charts/operaton/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ general:

image:
name: operaton/operaton
tag: 1.0.0-beta-3
tag: 1.0.0-beta-4
command: ['./operaton.sh']
args: ['--rest']

Expand Down Expand Up @@ -160,7 +160,7 @@ Each distro has different tags, check the list of
[supported tags/releases](https://github.com/operaton/operaton-docker?tab=readme-ov-file#supported-tagsreleases)
by Operaton docker project for more details.

The default image used in the chart is `operaton/operaton`, currently with the tag `1.0.0-beta-3`.
The default image used in the chart is `operaton/operaton`, currently with the tag `1.0.0-beta-4`.

`repository` and `tag` use [`tpl`](https://helm.sh/docs/howto/charts_tips_and_tricks/#using-the-tpl-function) function, it allows you to do templating:

Expand Down
2 changes: 1 addition & 1 deletion charts/operaton/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ commonLabels: {}

image:
repository: operaton/operaton
tag: 1.0.0-beta-3
tag: 1.0.0-beta-4
pullPolicy: IfNotPresent
pullSecrets: []
command: []
Expand Down