PHP Classes

File: local-volumes.yaml

Recommend this page to a friend!
  Classes of Nahidul Hasan   Laravel Docker Kubernetes   local-volumes.yaml   Download  
File: local-volumes.yaml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Docker Kubernetes
Run a Laravel project using Docker and Kubernetes
Author: By
Last change:
Date: 2 years ago
Size: 404 bytes
 

Contents

Class file image Download
apiVersion: v1 kind: PersistentVolume metadata: name: local-pv-1 labels: type: local spec: capacity: storage: 5Gi accessModes: - ReadWriteOnce hostPath: path: /tmp/data/pv-1 --- apiVersion: v1 kind: PersistentVolume metadata: name: local-pv-2 labels: type: local spec: capacity: storage: 5Gi accessModes: - ReadWriteOnce hostPath: path: /tmp/data/pv-2