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

docs: Update JES version in installation docs #300

Merged
merged 1 commit into from
Jul 4, 2022
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
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