File tree Expand file tree Collapse file tree
samples/features/sql-big-data-cluster
deployment/kubeadm/ubuntu Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010GO
1111
1212-- Enable external scripts execution for R/Python/Java:
13- exec sp_configure ' external scripts enabled' , 1 ;
14- RECONFIGURE WITH OVERRIDE ;
13+ DECLARE @config_option nvarchar (100 ) = ' external scripts enabled' ;
14+ IF NOT EXISTS (SELECT * FROM sys .configurations WHERE name = @config_option)
15+ BEGIN
16+ exec sp_configure @config_option, 1 ;
17+ RECONFIGURE WITH OVERRIDE ;
18+ END ;
1519GO
1620
1721IF DB_ID (' sales' ) IS NULL
Original file line number Diff line number Diff line change 22
33# Initialize a kubernetes cluster on the current node.
44#
5- KUBE_VERSION=1.13.0
5+ KUBE_VERSION=1.13.4
66sudo kubeadm init --pod-network-cidr=10.244.0.0/16 --kubernetes-version=$KUBE_VERSION
77mkdir -p $HOME /.kube
88sudo cp -i /etc/kubernetes/admin.conf $HOME /.kube/config
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ cat <<EOF >/etc/apt/sources.list.d/kubernetes.list
1010deb http://apt.kubernetes.io/ kubernetes-xenial main
1111EOF
1212
13- KUBE_DPKG_VERSION=1.13.0 -00
13+ KUBE_DPKG_VERSION=1.13.4 -00
1414apt-get update
1515apt-get install -y ebtables ethtool
1616apt-get install -y docker.io
You can’t perform that action at this time.
0 commit comments