Updates k8s example rc to use correct label

Previously, replication-controller.yaml used the name: nginx
label instead of app: nginx. This caused the example service.yaml
to not bind to replication-controller.yaml pods.

Closes-Bug: 1614206

Change-Id: I7260ef6b2987abc2677d40bc4aa9a9d87e1378ee
This commit is contained in:
Daneyon Hansen 2016-08-17 11:11:45 -07:00
parent 570173d999
commit f9e8c70398
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ write_files:
labels:
# Important: these labels need to match the selector above
# The api server enforces this constraint.
name: nginx
app: nginx
spec:
containers:
- name: nginx