1. 16 Nov, 2020 2 commits
  2. 24 Oct, 2020 1 commit
  3. 23 Oct, 2020 1 commit
  4. 22 Oct, 2020 2 commits
  5. 17 Oct, 2020 1 commit
  6. 15 Oct, 2020 1 commit
  7. 14 Oct, 2020 1 commit
  8. 13 Oct, 2020 1 commit
  9. 12 Oct, 2020 3 commits
  10. 09 Oct, 2020 8 commits
  11. 08 Oct, 2020 2 commits
  12. 01 Oct, 2020 3 commits
  13. 29 Sep, 2020 1 commit
  14. 24 Sep, 2020 3 commits
  15. 22 Sep, 2020 4 commits
  16. 15 Sep, 2020 1 commit
  17. 08 Sep, 2020 1 commit
    • 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
  18. 07 Sep, 2020 1 commit
  19. 05 Sep, 2020 2 commits
  20. 04 Sep, 2020 1 commit