Skip to content

Commit bc674d4

Browse files
authored
Add quotes around namespace in yq command README (#102)
Description of changes: For yq command to work " " are needed around namespace otherwise there will be a lexical error. By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent 8f94233 commit bc674d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ helm chart export $CHART_REF --destination $CHART_EXPORT_PATH
186186
yq e '.aws.region = env(AWS_DEFAULT_REGION)' -i values.yaml
187187
yq e '.aws.account_id = env(AWS_ACCOUNT_ID)' -i values.yaml
188188
yq e '.serviceAccount.annotations."eks.amazonaws.com/role-arn" = env(IAM_ROLE_ARN_FOR_IRSA)' -i values.yaml
189-
yq e '.installScope = namespace' -i values.yaml
189+
yq e '.installScope = "namespace"' -i values.yaml
190190
cd -
191191
```
192192
##### 3.1.3 Install Controller

0 commit comments

Comments
 (0)