Skip to content

Commit

Permalink
added a comment to start new pipeline
Browse files Browse the repository at this point in the history
Signed-off-by: vivekr-splunk <94569031+vivekr-splunk@users.noreply.github.com>
  • Loading branch information
vivekr-splunk committed Aug 10, 2023
1 parent c7586e8 commit 1bc9666
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/deploy-eks-cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ function createCluster() {

found=$(eksctl get cluster --name "${TEST_CLUSTER_NAME}" -v 0)
if [ -z "${found}" ]; then
eksctl utils update-cluster-logging --enable-types=all --region=us-west-2 --cluster=${TEST_CLUSTER_NAME}
eksctl create cluster --name=${TEST_CLUSTER_NAME} --nodes=${CLUSTER_WORKERS} --vpc-public-subnets=${EKS_VPC_PUBLIC_SUBNET_STRING} --vpc-private-subnets=${EKS_VPC_PRIVATE_SUBNET_STRING} --instance-types=m5.2xlarge --version=${EKS_CLUSTER_K8_VERSION}
eksctl utils update-cluster-logging --enable-types=all --region=us-west-2 --cluster=${TEST_CLUSTER_NAME}
if [ $? -ne 0 ]; then
echo "Unable to create cluster - ${TEST_CLUSTER_NAME}"
return 1
Expand Down

0 comments on commit 1bc9666

Please sign in to comment.