• jimbob687's avatar
    The formatting isn't templating correctly, resources will end up on the same line (#181) · db980fd0
    jimbob687 authored
    ```
            resources:
                        limits:
                cpu: 750m
                memory: 600Mi
              requests:
                cpu: 500m
                memory: 600Mi
    ```
    corrects it to:
    ```
            resources:
              limits:
                cpu: 750m
                memory: 600Mi
              requests:
                cpu: 500m
                memory: 600Mi
    ```
    Assuming your values file is set to:
    ```
    bootstrap:
      auth:
        # A secret with keys "username" and "password" is required
        secretName: mysecret
      ddldml:
        configMap: my-ddl-dml-config
        resources:
          requests:
            memory: "600Mi"
            cpu: "500m"
          limits:
            memory: "600Mi"
            cpu: "750m"
    ```
    db980fd0
Name
Last commit
Last update
.github/workflows Loading commit data...
charts Loading commit data...
terraform Loading commit data...
.editorconfig Loading commit data...
.gitignore Loading commit data...
CONTRIBUTING.md Loading commit data...
LICENSE Loading commit data...
README.md Loading commit data...
ct.yaml Loading commit data...