blob: 91b16ac414e7b60886f89553dfb08488ed3f864c [file] [log] [blame]
Tinoj Josepha9e53c92022-08-23 10:08:46 +05301# Copyright 2022-present Open Networking Foundation
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{{- if $.Values.redis.enabled}}
15kind: PersistentVolume
16apiVersion: v1
17metadata:
18 name: redis-volume-voltha-infra-0
19 labels:
20 type: local
21spec:
22 #storageClassName: local
23 capacity:
24 storage: 8Gi
25 accessModes:
26 - ReadWriteOnce
27 hostPath:
28 path: "/var/data/redis-0"
29{{- end }}