Skip to content

Commit 2c92582

Browse files
committed
Updated k8s version & bootstrap step
1 parent e5295bc commit 2c92582

3 files changed

Lines changed: 8 additions & 4 deletions

File tree

samples/features/sql-big-data-cluster/bootstrap-sample-db.sql

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,12 @@ END;
1010
GO
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;
1519
GO
1620

1721
IF DB_ID('sales') IS NULL

samples/features/sql-big-data-cluster/deployment/kubeadm/ubuntu/setup-k8s-master.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Initialize a kubernetes cluster on the current node.
44
#
5-
KUBE_VERSION=1.13.0
5+
KUBE_VERSION=1.13.4
66
sudo kubeadm init --pod-network-cidr=10.244.0.0/16 --kubernetes-version=$KUBE_VERSION
77
mkdir -p $HOME/.kube
88
sudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config

samples/features/sql-big-data-cluster/deployment/kubeadm/ubuntu/setup-k8s-prereqs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ cat <<EOF >/etc/apt/sources.list.d/kubernetes.list
1010
deb http://apt.kubernetes.io/ kubernetes-xenial main
1111
EOF
1212

13-
KUBE_DPKG_VERSION=1.13.0-00
13+
KUBE_DPKG_VERSION=1.13.4-00
1414
apt-get update
1515
apt-get install -y ebtables ethtool
1616
apt-get install -y docker.io

0 commit comments

Comments
 (0)