diff options
author | Grzegorz-Lis <grzegorz.lis@nokia.com> | 2020-11-06 12:37:36 +0000 |
---|---|---|
committer | Krzysztof Kosewski <krzysztof.kosewski@nokia.com> | 2021-01-08 10:35:30 +0000 |
commit | a9270d9dbdeed2da5d3527a62f9b2067b5ccb0e5 (patch) | |
tree | 69985763c0f69e900c1fd83737899e508be23f3a /kubernetes/portal/components/portal-cassandra/values.yaml | |
parent | 50d29a32cadf7c8c91e3409d8d604cc4852dadb4 (diff) |
[PORTAL] Make Portal use generic Cassandra image
Portal uses currently a customized, old Cassandra Image (cassandra_music:3.0.0)
which doesn't support dual stack (IPv4 and IPv6).
Intention of this change is to replace this image with generic, bitnami image.
Issue-ID: PORTAL-1037
Signed-off-by: Grzegorz Lis <grzegorz.lis@nokia.com>
Change-Id: I6d76a09328adc20b408f1e22fd608cd44b074712
Diffstat (limited to 'kubernetes/portal/components/portal-cassandra/values.yaml')
-rw-r--r-- | kubernetes/portal/components/portal-cassandra/values.yaml | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/kubernetes/portal/components/portal-cassandra/values.yaml b/kubernetes/portal/components/portal-cassandra/values.yaml index a0488e5cc7..ec76d08b72 100644 --- a/kubernetes/portal/components/portal-cassandra/values.yaml +++ b/kubernetes/portal/components/portal-cassandra/values.yaml @@ -1,5 +1,6 @@ -# Copyright © 2017 Amdocs, Bell Canada -# Modifications Copyright © 2018 AT&T +# Copyright (c) 2017 Amdocs, Bell Canada +# Modifications Copyright (c) 2018 AT&T +# Modifications Copyright (c) 2020 Nokia # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -22,7 +23,7 @@ global: # global defaults # application image -image: onap/music/cassandra_music:3.0.0 +image: bitnami/cassandra:3.11.9-debian-10-r30 pullPolicy: Always ################################################################# @@ -56,10 +57,14 @@ liveness: # necessary to disable liveness probe when setting breakpoints # in debugger so K8s doesn't restart unresponsive container enabled: true + successThreshold: 1 + failureThreshold: 3 readiness: initialDelaySeconds: 10 periodSeconds: 10 + successThreshold: 1 + failureThreshold: 3 ## Persist data to a persitent volume persistence: |