Skip to content

Instantly share code, notes, and snippets.

@rootfs
Created August 5, 2016 01:59
Show Gist options
  • Save rootfs/d395c0abdbf8e6e0b6aea6aebf9d57af to your computer and use it in GitHub Desktop.
Save rootfs/d395c0abdbf8e6e0b6aea6aebf9d57af to your computer and use it in GitHub Desktop.
kind: ReplicationController
metadata:
name: nfs-web
spec:
replicas: 1
selector:
role: web-frontend
template:
metadata:
labels:
role: web-frontend
spec:
containers:
- name: web
image: nginx
ports:
- name: web
containerPort: 80
volumeMounts:
# name must match the volume name below
- name: disk1
mountPath: "/mnt1"
volumes:
- name: disk1
azureDisk:
diskName: test7.vhd
diskURI: https://openshiftstoragede1802.blob.core.windows.net/vhds/test7.vhd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment