• Kevin Lau's avatar
    Clarify operator docs wording · bb69a1ed
    Kevin Lau authored
    The original is explaining the negation, when the body would not be
    included. Which would happen in the complement of the if expression,
    ie. flipped by De Morgan's law's:
    
    ```
    not (or .Values.anUnsetVariable (not .Values.aSetVariable))
    ==
    and (not .Values.anUnsetVariable) .Values.aSetVariable
    ```
    
    > unset variables evaluate to false
    
    is equivalent to `not .Values.anUnsetVariable`.
    
    > and
    
    is equivalent to `and`.
    
    > .Values.setVariable was negated with the not function
    
    doesn't seem to match `.Values.aSetVariable`.
    To me, that would be `not .Values.aSetVariable` instead.
    
    Anyway, explaining the `if` expression as-is and not the negation is
    clearer and parallels the first `if` operator.
    Signed-off-by: 's avatarKevin Lau <kelau1993@gmail.com>
    bb69a1ed
Name
Last commit
Last update
..
chart_best_practices Loading commit data...
chart_template_guide Loading commit data...
examples Loading commit data...
helm Loading commit data...
images Loading commit data...
logos Loading commit data...
man/man1 Loading commit data...
README.md Loading commit data...
architecture.md Loading commit data...
chart_repository.md Loading commit data...
chart_repository_faq.md Loading commit data...
chart_repository_sync_example.md Loading commit data...
chart_tests.md Loading commit data...
charts.md Loading commit data...
charts_hooks.md Loading commit data...
charts_tips_and_tricks.md Loading commit data...
developers.md Loading commit data...
glossary.md Loading commit data...
history.md Loading commit data...
install.md Loading commit data...
install_faq.md Loading commit data...
kubernetes_distros.md Loading commit data...
plugins.md Loading commit data...
provenance.md Loading commit data...
quickstart.md Loading commit data...
rbac.md Loading commit data...
related.md Loading commit data...
release_checklist.md Loading commit data...
securing_installation.md Loading commit data...
tiller_ssl.md Loading commit data...
using_helm.md Loading commit data...