• 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
bootstrap-job.yaml 5.28 KB