From 5d007760fabdfc470c25a545dbd8be150e0ea643 Mon Sep 17 00:00:00 2001 From: schoemme Date: Fri, 26 Dec 2025 14:18:01 -0600 Subject: [PATCH] Fix indentation in EKS cluster configuration example Adjusted indentation for YAML configuration in tutorial. The current implementation returns the error: > Error: loading config file "cluster.yaml": error converting YAML to JSON: yaml: line 10: mapping values are not allowed in this context --- docs/tutorial.adoc | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/tutorial.adoc b/docs/tutorial.adoc index 779f4dc..43d4143 100644 --- a/docs/tutorial.adoc +++ b/docs/tutorial.adoc @@ -67,17 +67,17 @@ apiVersion: eksctl.io/v1alpha5 kind: ClusterConfig metadata: - name: basic-cluster - region: us-west-2 + name: basic-cluster + region: us-west-2 nodeGroups: - - name: ng-1 - instanceType: m5.large - desiredCapacity: 2 - minSize: 1 - maxSize: 3 - ssh: - allow: false + - name: ng-1 + instanceType: m5.large + desiredCapacity: 2 + minSize: 1 + maxSize: 3 + ssh: + allow: false ---- . Customize the configuration: ** Update the `region` to match your desired AWS region.