Skip to content

Commit

Permalink
update terminal session for demo
Browse files Browse the repository at this point in the history
  • Loading branch information
gsunner committed Feb 13, 2019
1 parent 95fad65 commit 81dd36a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/cicd-argocd/create-demo-tmux-session
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ create_new_dash_window() {

# watch cluster
tmux select-pane -t 0
tmux send-keys "${STARTUP_DIR}/watch-cluster" C-m
tmux send-keys "${STARTUP_DIR}/watch-cluster-pods" C-m

# show jenkins logs
tmux select-pane -t 1
Expand Down
2 changes: 1 addition & 1 deletion examples/cicd-argocd/seldon-core/watch-calls
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ set -o pipefail

STARTUP_DIR="$( cd "$( dirname "$0" )" && pwd )"

watch -n 1 "${STARTUP_DIR}/do-rest-request-LOCALHOST.py"
watch -t -n 1 "echo 'Every 1s: Watching Prediction call result' && echo '' && ${STARTUP_DIR}/do-rest-request-LOCALHOST.py"

2 changes: 1 addition & 1 deletion examples/cicd-argocd/watch-cluster-pods
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ source ${STARTUP_DIR}/settings.sh

KUBECTL="kubectl --context=${KUBE_CONTEXT}"

watch "${KUBECTL} get pods -n default"
watch -t -n 1 "echo 'Every 1s: Watching Pods in default namespace' && echo '' && ${KUBECTL} get pods -n default"

0 comments on commit 81dd36a

Please sign in to comment.