Untitled

From Social Bird, 7 Years ago, written in Plain Text, viewed 2 times.
URL https://paste.blessuren.de/view/a5123c5b Embed
Download Paste or View Raw
  1. apiVersion: v1
  2. kind: Pod
  3. metadata:
  4.   name: mgebbe-apps
  5. spec:
  6.   containers:
  7.   - name: nginx
  8.     image: nginx:1.15
  9.     ports:
  10.     - containerPort: 80
  11.   - name: pivx
  12.     image: matzeihn/pivx:latest
  13.     ports:
  14.     - containerPort: 80
  15.     volumeMounts:
  16.     - name: pivx-vol
  17.       mountPath: "/home/pivx/.pivx/"
  18.       readOnly: false
  19.   volumes:
  20.   - name: pivx-vol
  21.     hostPath:
  22.       path: /data/pivx
  23.       type: Directory
  24.  

Reply to "Untitled"

Here you can reply to the paste above