summaryrefslogtreecommitdiffstats
path: root/kubernetes/a1policymanagement/templates/statefulset.yaml
AgeCommit message (Collapse)AuthorFilesLines
2023-03-20[A1P] Chart Cleanup from TLS/AAFAndreas Geissler1-9/+5
Update the charts and remove all TLS/AAF related entries Issue-ID: OOM-3112 Signed-off-by: Andreas Geissler <andreas-geissler@telekom.de> Change-Id: I50dc3aea3360ee0d593942481edcb7ff7b572cbd
2022-10-21[A1POLICYMANAGEMENT] Make A1P ServiceMesh compatibleAndreas Geissler1-0/+2
Update the application config to run in Istio SM by using HTTP instead of HTTPS and disable AAF dependency Issue-ID: OOM-3008 Signed-off-by: Andreas Geissler <andreas-geissler@telekom.de> Change-Id: I3882912d98b05861114848902f35d254fa49c9d8
2021-11-24[A1POLICYMANAGEMENT] Fix missing imagePullSecretsAndreas Geissler1-1/+3
Added imagePullSecrets and changed image definition for envsubstImage Issue-ID: OOM-2885 Signed-off-by: Andreas Geissler <andreas-geissler@telekom.de> Change-Id: I355301329d24c8f1eef96aa2212c67f524c10520
2021-09-28[A1POLICYMANAGEMENT] Update chart with service accountfarida azmy1-0/+1
Add service account to requirements, values and deployment/statefulset. Issue-ID: OOM-2844 Signed-off-by: farida azmy <farida.azmy.ext@orange.com> Change-Id: I06c320e8bcf0f98fe65d31f4508177bd5d40a27d
2021-06-11[PMS] Persistent storage of policies and type definitionsPatrikBuhr1-0/+126
Improvements: - Using common metadata for the PV and the PVC. - Changed the deployment to a stateful set. Even Deployments with one replica using ReadWriteOnce volume are not recommended. This is because the default Deployment strategy creates a second Pod before bringing down the first Pod on a recreate. The Deployment may fail in deadlock as the second Pod can't start because the ReadWriteOnce volume is already in use, and the first Pod won't be removed because the second Pod has not yet started. Instead, use a StatefulSet with ReadWriteOnce volumes. Change-Id: If3477be43eee5348a9142cceb832bbb2bf9d6017 Issue-ID: CCSDK-3256 Signed-off-by: PatrikBuhr <patrik.buhr@est.tech>