Skip to content

Commit d01e9b9

Browse files
committed
Updated k8s version and serverproperty check
1 parent cced461 commit d01e9b9

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ BEGIN
8383
CREATE MASTER KEY ENCRYPTION BY PASSWORD = 'sql19bigdatacluster!';
8484

8585
-- Create default data sources for SQL Big Data Cluster
86-
IF SERVERPROPERTY('ProductLevel') = 'RTM'
86+
IF SERVERPROPERTY('ProductLevel') <> 'RC1'
8787
CREATE EXTERNAL DATA SOURCE SqlComputePool
8888
WITH (LOCATION = 'sqlcomputepool://controller-svc/default');
8989

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.15.0
5+
KUBE_VERSION=1.16.2
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.15.0-00
13+
KUBE_DPKG_VERSION=1.16.2-00
1414
apt-get update
1515
apt-get install -y ebtables ethtool
1616
apt-get install -y docker.io

0 commit comments

Comments
 (0)