k8s guestbook example

This commit is contained in:
Vincent Fiduccia
2016-03-09 11:52:25 -07:00
parent c462456014
commit f0dfd83154
9 changed files with 145 additions and 0 deletions
@@ -0,0 +1,13 @@
apiVersion: v1
kind: Service
metadata:
name: redis-master
labels:
name: redis-master
spec:
ports:
# the port that this service should serve on
- port: "6379"
targetPort: "6379"
selector:
name: redis-master