Skip to content
This repository has been archived by the owner on Jan 19, 2024. It is now read-only.

Commit

Permalink
docs: Update JES version in installation docs (#300)
Browse files Browse the repository at this point in the history
Signed-off-by: Raphael Ludwig <raphael.ludwig@dynatrace.com>
  • Loading branch information
Raffy23 authored Jul 4, 2022
1 parent 2ccf55f commit 934728f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ For now, we advise to install Job-Executor-Service in a separate namespace, and
Install `job-executor-service` on a kubernetes cluster where `Keptn` is already installed:

```shell
JES_VERSION="0.2.0"
JES_VERSION="0.2.3"
JES_NAMESPACE="keptn-jes"
TASK_SUBSCRIPTION="sh.keptn.event.remote-task.triggered" # Add the relevant events here in a comma-separated list

Expand Down
7 changes: 4 additions & 3 deletions docs/INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ In order to install the *job-executor-service* on the remote execution plane, so
**Example installation with token:**

```bash
JES_VERSION=<VERSION> # e.g. 0.2.1
JES_VERSION=<VERSION> # e.g. 0.2.3

KEPTN_API_PROTOCOL=http # or https
KEPTN_API_HOST=<INSERT-YOUR-HOSTNAME-HERE> # e.g., 1.2.3.4.nip.io
Expand Down Expand Up @@ -45,10 +45,11 @@ If multiple Keptn installations are present, the `remoteControlPlane.autoDetect.
The auto-detection feature can be enabled by setting `remoteControlPlane.autoDetect.enabled` to `true`.

```bash
JES_VERSION=<VERSION> # e.g. 0.2.3
TASK_SUBSCRIPTION=sh.keptn.event.remote-task.triggered

helm upgrade --install --create-namespace -n <NAMESPACE> \
job-executor-service https://github.com/keptn-contrib/job-executor-service/releases/download/<VERSION>/job-executor-service-<VERSION>.tgz \
job-executor-service https://github.com/keptn-contrib/job-executor-service/releases/download/${JES_VERSION}/job-executor-service-${JES_VERSION}.tgz \
--set remoteControlPlane.autoDetect.enabled=true \
--set remoteControlPlane.topicSubscription=${TASK_SUBSCRIPTION} \
--set remoteControlPlane.api.token="" \
Expand All @@ -66,7 +67,7 @@ If the oauth authentication mode should be used instead of the token, the follow
* `remoteControlPlane.api.oauth.scopes` - The scopes which should be requested by the job executor service

```bash
JES_VERSION=<VERSION> # e.g. 0.2.1
JES_VERSION=<VERSION> # e.g. 0.2.3

KEPTN_API_PROTOCOL=http # or https
KEPTN_API_HOST=<INSERT-YOUR-HOSTNAME-HERE> # e.g., 1.2.3.4.nip.io
Expand Down

0 comments on commit 934728f

Please sign in to comment.