postgres yaml files modified
[ealt-edge.git] / mecm / mepm / applcm / resources / deployment / postgres-storage.yaml
1 # Copyright 2020 Huawei Technologies Co., Ltd.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #     http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 # persistent volume
16 ---
17 kind: PersistentVolume
18 apiVersion: v1
19 metadata:
20   name: postgres-pv-volume
21   labels:
22     type: local
23     app: postgres
24 spec:
25   storageClassName: manual
26   capacity:
27     storage: 5Gi
28   accessModes:
29     - ReadWriteMany
30   hostPath:
31     path: "/mnt/data"
32 ---
33 kind: PersistentVolumeClaim
34 apiVersion: v1
35 metadata:
36   name: postgres-pv-claim
37   labels:
38     app: postgres
39 spec:
40   storageClassName: manual
41   accessModes:
42     - ReadWriteMany
43   resources:
44     requests:
45       storage: 5Gi