aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/aai/components/aai-modelloader/values.yaml
diff options
context:
space:
mode:
authorAndreas Geissler <andreas-geissler@telekom.de>2024-12-12 11:34:05 +0000
committerGerrit Code Review <gerrit@onap.org>2024-12-12 11:34:05 +0000
commitbaa6822ac0435a5b4d2e2fc490e238163bedb34c (patch)
treed20410331bd422ef20c8f6a7829be88d43c0bb68 /kubernetes/aai/components/aai-modelloader/values.yaml
parent5f8008ea8d1aa700a26b7ced5d43aacbcf23107a (diff)
parent23428032527583798d5e42aa96555728cc71a06d (diff)
Merge "[AAI] Fix Kyverno Policy violations"
Diffstat (limited to 'kubernetes/aai/components/aai-modelloader/values.yaml')
-rw-r--r--kubernetes/aai/components/aai-modelloader/values.yaml21
1 files changed, 15 insertions, 6 deletions
diff --git a/kubernetes/aai/components/aai-modelloader/values.yaml b/kubernetes/aai/components/aai-modelloader/values.yaml
index d76b1d33a3..6c8cdb7d31 100644
--- a/kubernetes/aai/components/aai-modelloader/values.yaml
+++ b/kubernetes/aai/components/aai-modelloader/values.yaml
@@ -74,17 +74,22 @@ nodeSelector: {}
affinity: {}
+service:
+ # REST API port for the graphadmin microservice
+ appPortName: http
+ appPort: 9500
+
# probe configuration parameters
liveness:
- initialDelaySeconds: 10
- periodSeconds: 10
- # necessary to disable liveness probe when setting breakpoints
- # in debugger so K8s doesn't restart unresponsive container
enabled: true
+ path: /healthz
+ periodSeconds: 10
+ initialDelaySeconds: 10
readiness:
- initialDelaySeconds: 10
+ path: /healthz
periodSeconds: 10
+ initialDelaySeconds: 10
resources:
small:
@@ -92,7 +97,7 @@ resources:
cpu: "1"
memory: "4Gi"
requests:
- cpu: "0.5"
+ cpu: "500m"
memory: "1Gi"
large:
limits:
@@ -135,3 +140,7 @@ log:
level:
root: INFO
logConfigMapNamePrefix: '{{ include "common.fullname" . }}'
+
+volumes:
+ logSizeLimit: 64Mi
+ tmpSizeLimit: 100Mi