Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions oc-cluster
Original file line number Diff line number Diff line change
Expand Up @@ -511,6 +511,17 @@ function up {
if supports pv; then
CMDLINE+=" --host-pv-dir $OPENSHIFT_HOST_PV_DIR"
fi

if [ ! -z $__PARM_OC_HTTP_PROXY ]; then
CMDLINE+=" --http-proxy=$__PARM_OC_HTTP_PROXY"
fi
if [ ! -z $__PARM_OC_HTTPS_PROXY ]; then
CMDLINE+=" --https-proxy=$__PARM_OC_HTTPS_PROXY"
fi
if [ ! -z $__PARM_OC_NO_PROXY ]; then
CMDLINE+=" --no-proxy=$__PARM_OC_NO_PROXY"
fi

CMDLINE+=" --use-existing-config"
CMDLINE+=" -e TZ=$OC_CLUSTER_TZ"
# Add Self signed certificates to the profile
Expand Down