Browse Source

Make default pod name match the one from template

pull/17/head
Rodolfo Carvalho 10 years ago
parent
commit
6525c94458
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      openshift/scripts/run-in-container.sh

+ 1
- 1
openshift/scripts/run-in-container.sh View File

@ -34,7 +34,7 @@
# Get name of a currently deployed pod by label and index # Get name of a currently deployed pod by label and index
POD_INSTANCE_NAME=`oc get pods \ POD_INSTANCE_NAME=`oc get pods \
-l "name=${POD_NAME:-django}" \
-l "name=${POD_NAME:-django-frontend}" \
-t "{{ with index .items ${POD_INDEX:-0} }}{{ .metadata.name }}{{ end }}"` -t "{{ with index .items ${POD_INDEX:-0} }}{{ .metadata.name }}{{ end }}"`
# Run command in a container of the specified pod: # Run command in a container of the specified pod:


Loading…
Cancel
Save