924d87dbf7
Change-Id: If018c30ed04d245e1a2170ad764f22307bdeebf3
19 lines
636 B
Bash
19 lines
636 B
Bash
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# Set work dir if not already done
|
|
: ${WORK_DIR:="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"}
|
|
|
|
# Get Host OS
|
|
source /etc/os-release
|
|
export HOST_OS=${HOST_OS:="${ID}"}
|
|
|
|
# Set versions of K8s to use
|
|
export KUBE_VERSION=${KUBE_VERSION:-"v1.8.0"}
|
|
|
|
# Set Upstream DNS
|
|
export UPSTREAM_DNS=${UPSTREAM_DNS:-"8.8.8.8"} |