mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-13 01:40:23 +00:00
19 lines
382 B
YAML
19 lines
382 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: explorer
|
|
spec:
|
|
containers:
|
|
- name: explorer
|
|
image: gcr.io/google_containers/explorer:1.0
|
|
args: ["-port=8080"]
|
|
ports:
|
|
- containerPort: 8080
|
|
protocol: TCP
|
|
volumeMounts:
|
|
- mountPath: "/mount/test-volume"
|
|
name: test-volume
|
|
volumes:
|
|
- name: test-volume
|
|
emptyDir: {}
|