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

Commit 642e2a9

Browse files
authoredJun 20, 2022
feat: Upgrade to Keptn 0.14 (#275)
* feat: Upgrade to Keptn 0.14 Signed-off-by: TannerGabriel <[email protected]> * Remove env var Signed-off-by: TannerGabriel <[email protected]> * Change distributor version Signed-off-by: TannerGabriel <[email protected]> * Fix README compatibility matrix Signed-off-by: TannerGabriel <[email protected]>
1 parent 6c4201d commit 642e2a9

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed
 

Diff for: ‎README.md

+5
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,14 @@ running in the Keptn ecosystem:
2929
| 0.12.2 | keptncontrib/job-executor-service:0.1.7 | v2 |
3030
| 0.12.6 | keptncontrib/job-executor-service:0.1.8 | v2 |
3131
| 0.13.x | keptncontrib/job-executor-service:0.1.9 | v2 |
32+
| 0.13.x | keptncontrib/job-executor-service:0.2.0 | v2 |
33+
| 0.14.x | keptncontrib/job-executor-service:0.2.1 | v2 |
3234

3335
Please note: Newer Keptn versions might be compatible, but compatibility has not been verified at the time of the release.
3436

37+
**Note**: If you are installing JES in the same namespace as Keptn, versions compatible with Keptn 0.14.x and newer will not be backward compatible due to a change in NATS cluster name
38+
(see https://github.com/keptn/keptn/releases/tag/0.14.1 for more info about the breaking change).
39+
3540
**Warning**: We are aware that there might be a problem when trying to install Job-Executor-Service in the same namespace as Keptn 0.14.x.
3641
For now, we advise to install Job-Executor-Service in a separate namespace, and set `remoteControlPlane.api.hostname`, `remoteControlPlane.api.token`, ... as detailed in the
3742
[Installation instructions](docs/INSTALL.md).

Diff for: ‎chart/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ distributor:
1818
image:
1919
repository: docker.io/keptn/distributor # Container Image Name
2020
pullPolicy: IfNotPresent # Kubernetes Image Pull Policy
21-
tag: "0.13.4" # Container Tag
21+
tag: "0.14.3" # Container Tag
2222
config:
2323
queueGroup:
2424
enabled: true # Enable connection via Nats queue group to support exactly-once message processing

Diff for: ‎go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ require (
99
github.com/gobwas/glob v0.2.3
1010
github.com/golang/mock v1.6.0
1111
github.com/kelseyhightower/envconfig v1.4.0
12-
github.com/keptn/go-utils v0.13.0
13-
github.com/keptn/kubernetes-utils v0.13.0
12+
github.com/keptn/go-utils v0.14.0
13+
github.com/keptn/kubernetes-utils v0.14.0
1414
github.com/mitchellh/mapstructure v1.5.0
1515
github.com/spf13/afero v1.8.2
1616
github.com/stretchr/testify v1.7.2

Diff for: ‎go.sum

+4
Original file line numberDiff line numberDiff line change
@@ -505,8 +505,12 @@ github.com/kelseyhightower/envconfig v1.4.0 h1:Im6hONhd3pLkfDFsbRgu68RDNkGF1r3dv
505505
github.com/kelseyhightower/envconfig v1.4.0/go.mod h1:cccZRl6mQpaq41TPp5QxidR+Sa3axMbJDNb//FQX6Gg=
506506
github.com/keptn/go-utils v0.13.0 h1:jQ8EoWWa4EPamu4dis+AMzVD4YG2Yu/FEwvpgwslFrE=
507507
github.com/keptn/go-utils v0.13.0/go.mod h1:yJM7pnCUj23VHKa2az9eWUTAmLDv94f6DVHON9qV1kU=
508+
github.com/keptn/go-utils v0.14.0 h1:1EDbYjKdQdhcvp6ErbDyyR/pd7pa4dksT509/GRzQ24=
509+
github.com/keptn/go-utils v0.14.0/go.mod h1:CIRwnEp/QYaSBa/r146x3h4yqWB4FS3YNKHzftoyhVA=
508510
github.com/keptn/kubernetes-utils v0.13.0 h1:tIdmdNobI+L4/b3nJPzMRJ1vRg4oqEEnDGPBHFO/hzs=
509511
github.com/keptn/kubernetes-utils v0.13.0/go.mod h1:WgPDwDt8QxEoaQXIBE7MmSp6TBDe09/AyAEk7T9r8Og=
512+
github.com/keptn/kubernetes-utils v0.14.0 h1:dB4FmUXfYNiYg/oxk7AxtybrqOHUgvPtuzMpICw5zt4=
513+
github.com/keptn/kubernetes-utils v0.14.0/go.mod h1:cu8MTtcyy0QPyM+xbFISx76DMkrNkeHWNBXTzxDkUn4=
510514
github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q=
511515
github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00=
512516
github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8=

Diff for: ‎skaffold.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ deploy:
5555
overrides:
5656
distributor:
5757
image:
58-
tag: 0.13.4
58+
tag: 0.14.3
5959
securityContext:
6060
seccompProfile:
6161
type: Unconfined # needed for debugging

0 commit comments

Comments
 (0)
This repository has been archived.