Skip to content

Commit

Permalink
Merge changes from release-086 to master (keptn#4655)
Browse files Browse the repository at this point in the history
Signed-off-by: Johannes <[email protected]>
  • Loading branch information
johannes-b authored Jul 15, 2021
1 parent b940ca8 commit acdb7dd
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,15 +99,15 @@ readinessProbe:
fieldPath: metadata.name
- name: K8S_NAMESPACE
{{- if .Values.distributor.metadata.namespace }}
value: .Values.distributor.metadata.namespace
value: {{ .Values.distributor.metadata.namespace }}
{{- else }}
valueFrom:
fieldRef:
fieldPath: metadata.namespace
{{- end }}
- name: K8S_NODE_NAME
{{- if .Values.distributor.metadata.hostname }}
value: .Values.distributor.metadata.hostname
value: {{ .Values.distributor.metadata.hostname }}
{{- else }}
valueFrom:
fieldRef:
Expand Down
26 changes: 26 additions & 0 deletions releasenotes/releasenotes_V0.8.6.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Release Notes 0.8.6

This is a hotfix release for Keptn 0.8.5, containing an updated Helm Chart *keptn-0.8.6.tgz* for setting the node/namespace of a distributor.

---

## Fixes

- Allow to set the metadata for the node and namespace [4591](https://github.com/keptn/keptn/issues/4591)
- Correct syntax [4609](https://github.com/keptn/keptn/issues/4609)

## Installation and upgrade instructions

Installing and/or upgrading to this release should be done using the `helm upgrade` command, e.g.:

**Installation** (using `--install`)
```console
helm upgrade keptn keptn --install -n keptn --create-namespace --wait --version=0.8.6 --repo=https://storage.googleapis.com/keptn-installer
```

**Upgrade** (using `--reuse-values`)
```console
helm upgrade keptn keptn -n keptn --wait --version=0.8.6 --repo=https://storage.googleapis.com/keptn-installer --reuse-values
```

It is not required to upgrade the CLI.

0 comments on commit acdb7dd

Please sign in to comment.