• Erik Sundell's avatar
    Reform indentation practices using nindent (#4562) · eb96576b
    Erik Sundell authored
    The essence of this commit is to help people get started with a better
    indentation practice than this:
    
    ```yaml
    spec:
      labels:
    {{ toYaml .Values.labels | indent 4 }}
    ```
    
    The previous indentation practice is harder to read. Instead this commit
    introduces an indentation practice using `nindent` like this:
    
    ```yaml
    spec:
      labels:
        {{- toYaml .Values.labels | nindent 4 }}
    ```
    Signed-off-by: 's avatarErik Sundell <erik.i.sundell@gmail.com>
    eb96576b
Name
Last commit
Last update
..
templates Loading commit data...
.helmignore Loading commit data...
Chart.yaml Loading commit data...
README.md Loading commit data...
values.yaml Loading commit data...