**Lab: Conditionals, With Blocks and Ranges** of **Helm for Beginners** question 6/9

This is related to Helm for Beginners course and Lab: Conditionals, With Blocks and Ranges Question 6/9.
The task is a bit misleading " If we try to install the webapp-color helm chart repository now, will the serviceAccount be created?
If you look at the values.yaml file; it says:
serviceAccount:

Specifies whether a service account should be created

create: false.

Please find 2 screenshots; one showing the question and my answer (which appears to be wrong) and the other from values.yaml.

Looking forward to hearing from you.
Regards,
@ewiklund


Hi @ewiklund

If you look at the service account template, it doesn’t use the create variable. This means the service account will always be created. In short, setting create: false has no effect because the template doesn’t check it.

The correct answer is yes. Moving on to the next question will help you understand it better.

Ok, thanks for the explanation.