• 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
..
_helpers.tpl Loading commit data...
configmap.yaml Loading commit data...
deployment.yaml Loading commit data...
post-install-job.yaml Loading commit data...
pre-install-secret.yaml Loading commit data...
service-test.yaml Loading commit data...
service.yaml Loading commit data...