diff options
-rw-r--r-- | docs/sections/release_notes/release-notes-istanbul.rst (renamed from docs/sections/release_notes/release-notes-isntanbul.rst) | 2 | ||||
-rw-r--r-- | docs/sections/release_notes/release-notes-jakarta.rst | 2 | ||||
-rw-r--r-- | docs/sections/release_notes/release-notes.rst | 36 | ||||
-rw-r--r-- | kubernetes/multicloud/templates/deployment.yaml | 2 | ||||
-rw-r--r-- | kubernetes/multicloud/values.yaml | 2 |
5 files changed, 21 insertions, 23 deletions
diff --git a/docs/sections/release_notes/release-notes-isntanbul.rst b/docs/sections/release_notes/release-notes-istanbul.rst index 8cfbc16210..a29b1e2f2d 100644 --- a/docs/sections/release_notes/release-notes-isntanbul.rst +++ b/docs/sections/release_notes/release-notes-istanbul.rst @@ -45,7 +45,7 @@ Release Data | **Release designation** | Istanbul | | | | +--------------------------------------+--------------------------------------+ -| **Release date** | | +| **Release date** | 2021/11/04 | | | | +--------------------------------------+--------------------------------------+ diff --git a/docs/sections/release_notes/release-notes-jakarta.rst b/docs/sections/release_notes/release-notes-jakarta.rst index 97621fa657..cfc57888a6 100644 --- a/docs/sections/release_notes/release-notes-jakarta.rst +++ b/docs/sections/release_notes/release-notes-jakarta.rst @@ -46,7 +46,7 @@ Release Data | **Release designation** | Jakarta | | | | +--------------------------------------+--------------------------------------+ -| **Release date** | | +| **Release date** | 2022/06/23 | | | | +--------------------------------------+--------------------------------------+ diff --git a/docs/sections/release_notes/release-notes.rst b/docs/sections/release_notes/release-notes.rst index c26593675d..4b1552dd40 100644 --- a/docs/sections/release_notes/release-notes.rst +++ b/docs/sections/release_notes/release-notes.rst @@ -25,7 +25,7 @@ Previous Release Notes Abstract ======== -This document provides the release notes for the Jakarta release. +This document provides the release notes for the Kohn release. Summary ======= @@ -42,7 +42,7 @@ Release Data | **Docker images** | N/A | | | | +--------------------------------------+--------------------------------------+ -| **Release designation** | Jakarta | +| **Release designation** | Kohn | | | | +--------------------------------------+--------------------------------------+ | **Release date** | | @@ -52,11 +52,19 @@ Release Data New features ------------ +* Kubernetes support for version up to 1.23.8 +* Helm support for version up to Helm: 3.8.2 +* Kubespray version used for automated deployment 2.19 (used for automated deployment) +* Initial Setup for "ONAP on ServiceMesh" deployment + + * using Istio 1.14.1 as SM platform + * including Istio Ingress Gateway for external access + * modify 90% of ONAP component charts to support SeviceMesh **Bug fixes** A list of issues resolved in this release can be found here: -https://jira.onap.org/projects/OOM/versions/11498 +https://jira.onap.org/projects/OOM/versions/11499 **Known Issues** @@ -86,33 +94,21 @@ Known Limitations, Issues and Workarounds Known Vulnerabilities --------------------- +* Cassandra version needs to be updated to support new Python version + see `OOM-2900 <https://jira.onap.org/browse/OOM-2900>`_ Workarounds ----------- -- `OOM-2754 <https://jira.onap.org/browse/OOM-2754>`_ - Because of *updateEndpoint* property added to *cmpv2issuer* CRD - it is impossible to upgrade platform component from Istanbul to Jakarta - release without manual steps. Actions that should be performed: - - #. Update the CRD definition:: - - > kubectl -n onap apply -f oom/kubernetes/platform/components/cmpv2-cert-provider/crds/cmpv2issuer.yaml - #. Upgrade the component:: - - > helm -n onap upgrade dev-platform oom/kubernetes/platform - #. Make sure that *cmpv2issuer* contains correct value for - *spec.updateEndpoint*. The value should be: *v1/certificate-update*. - If it's not, edit the resource:: - - > kubectl -n onap edit cmpv2issuer cmpv2-issuer-onap - Security Notes -------------- **Fixed Security Issues** +* Fixed vulnerabilities for oom-platform-cert-service + see `Fixes <https://wiki.onap.org/pages/viewpage.action?spaceKey=SV&title=Kohn+OOM>`_ + References ========== diff --git a/kubernetes/multicloud/templates/deployment.yaml b/kubernetes/multicloud/templates/deployment.yaml index ff9dac1898..5e1090798e 100644 --- a/kubernetes/multicloud/templates/deployment.yaml +++ b/kubernetes/multicloud/templates/deployment.yaml @@ -55,6 +55,8 @@ spec: value: "{{ .Values.config.aai.username }}" - name: AAI_PASSWORD value: "{{ .Values.config.aai.password }}" + - name: AAI_PROTOCOL + value: "{{- if (include "common.needTLS" .) }}https{{ else }}http{{ end }}" - name: SSL_ENABLED value: "{{- if (include "common.needTLS" .) }}{{ .Values.config.ssl_enabled }}{{ else }}false{{ end }}" resources: diff --git a/kubernetes/multicloud/values.yaml b/kubernetes/multicloud/values.yaml index 91dfa5cacb..9ea62aa98f 100644 --- a/kubernetes/multicloud/values.yaml +++ b/kubernetes/multicloud/values.yaml @@ -64,7 +64,7 @@ config: msbPlainPort: 80 aai: aaiPort: 8443 - aaiPlainPort: 8080 + aaiPlainPort: 80 schemaVersion: v13 username: AAI password: AAI |