From 0f6f0408fa86fd1c9276d36f3f6d1cae2965e4fa Mon Sep 17 00:00:00 2001 From: Mihaela Blendea Date: Thu, 25 Jul 2019 08:51:57 -0700 Subject: [PATCH] Update deploy-sql-big-data-aks.py --- .../deployment/aks/deploy-sql-big-data-aks.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/samples/features/sql-big-data-cluster/deployment/aks/deploy-sql-big-data-aks.py b/samples/features/sql-big-data-cluster/deployment/aks/deploy-sql-big-data-aks.py index e333794d..114c6c62 100644 --- a/samples/features/sql-big-data-cluster/deployment/aks/deploy-sql-big-data-aks.py +++ b/samples/features/sql-big-data-cluster/deployment/aks/deploy-sql-big-data-aks.py @@ -77,17 +77,17 @@ print("Creating SQL Big Data cluster:" +CLUSTER_NAME) command="azdata bdc config init --source aks-dev-test --target custom --force" executeCmd (command) -command="azdata bdc config section set -c custom -j ""metadata.name=" + CLUSTER_NAME + "" +command="azdata bdc config replace -c custom -j ""metadata.name=" + CLUSTER_NAME + "" executeCmd (command) # Use this only if you are using a private registry different than default Micrososft registry (mcr). -# command="azdata bdc config section set -c custom -j ""$.spec.controlPlane.spec.docker.registry=" + DOCKER_REGISTRY + "" +# command="azdata bdc config replace -c custom -j ""$.spec.controlPlane.spec.docker.registry=" + DOCKER_REGISTRY + "" # executeCmd (command) -# command="azdata bdc config section set -c custom -j ""$.spec.controlPlane.spec.docker.repository=" + DOCKER_REPOSITORY + "" +# command="azdata bdc config replace -c custom -j ""$.spec.controlPlane.spec.docker.repository=" + DOCKER_REPOSITORY + "" # executeCmd (command) -# command="azdata bdc config section set -c custom -j ""$.spec.controlPlane.spec.docker.imageTag=" + DOCKER_IMAGE_TAG + "" +# command="azdata bdc config replace -c custom -j ""$.spec.controlPlane.spec.docker.imageTag=" + DOCKER_IMAGE_TAG + "" # executeCmd (command) command="azdata bdc create -c custom --accept-eula yes"