diff options
author | Mandeep Khinda <mandeep.khinda@amdocs.com> | 2018-10-09 14:47:35 +0000 |
---|---|---|
committer | Mandeep Khinda <mandeep.khinda@amdocs.com> | 2018-10-11 00:52:31 +0000 |
commit | d7fd1875b1a8fd34547173296339be5a8c5d28ae (patch) | |
tree | 9670fcd4fc505f53d2156fa58bc74f2b8d9a1087 /charts/aaf-cs/values.yaml | |
parent | 449af556fdf4dce596d585dc23d6fc16f880edde (diff) |
refactor AAF casablanca charts
Issue-ID: AAF-539
Change-Id: Id1f263d526ef5fa88c6cd25f7ed1779d3a0cd2ee
Signed-off-by: Mandeep Khinda <mandeep.khinda@amdocs.com>
Diffstat (limited to 'charts/aaf-cs/values.yaml')
-rw-r--r-- | charts/aaf-cs/values.yaml | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/charts/aaf-cs/values.yaml b/charts/aaf-cs/values.yaml index 73dac29..a914b54 100644 --- a/charts/aaf-cs/values.yaml +++ b/charts/aaf-cs/values.yaml @@ -24,12 +24,9 @@ flavor: small ################################################################# # application image repository: nexus3.onap.org:10001 -image: library/cassandra:3.11 +image: onap/aaf/aaf_cass:2.1.2-SNAPSHOT pullPolicy: Always -# flag to enable debugging - application support required -debugEnabled: false - # application configuration config: {} @@ -42,14 +39,14 @@ affinity: {} # probe configuration parameters liveness: - initialDelaySeconds: 180 + initialDelaySeconds: 300 periodSeconds: 10 # necessary to disable liveness probe when setting breakpoints # in debugger so K8s doesn't restart unresponsive container enabled: true readiness: - initialDelaySeconds: 180 + initialDelaySeconds: 120 periodSeconds: 10 service: @@ -87,4 +84,14 @@ resources: requests: cpu: 40m memory: 9000Mi - unlimited: {}
\ No newline at end of file + unlimited: {} + +persistence: + enabled: true + #existingClaim: + mountPath: /dockerdata-nfs + mountSubPath: "cass" + volumeReclaimPolicy: Retain + accessMode: ReadWriteOnce + size: 10Gi + storageClass: "manual"
\ No newline at end of file |