
This ensures nfs-common is installed on GCE, and provides a more functional explanation/example. I launched two replication controllers so that there were busybox pods to poke around at the NFS volume, and so that the later wget actually works (the original example would have to work on the node, or need some other access to the container network). After switching to two controllers, it actually makes more sense to use PV claims, and it's probably a configuration that makes more sense for indirection for NFS anyways.
10 lines
120 B
YAML
10 lines
120 B
YAML
kind: Service
|
|
apiVersion: v1
|
|
metadata:
|
|
name: nfs-web
|
|
spec:
|
|
ports:
|
|
- port: 80
|
|
selector:
|
|
role: web-frontend
|