1. 12 Oct, 2020 2 commits
  2. 09 Oct, 2020 8 commits
  3. 08 Oct, 2020 2 commits
  4. 01 Oct, 2020 3 commits
  5. 29 Sep, 2020 1 commit
  6. 24 Sep, 2020 3 commits
  7. 22 Sep, 2020 4 commits
  8. 15 Sep, 2020 1 commit
  9. 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
  10. 07 Sep, 2020 1 commit
  11. 05 Sep, 2020 2 commits
  12. 04 Sep, 2020 1 commit
  13. 03 Sep, 2020 1 commit
  14. 02 Sep, 2020 1 commit
  15. 28 Aug, 2020 1 commit
  16. 27 Aug, 2020 4 commits
  17. 24 Aug, 2020 1 commit
  18. 21 Aug, 2020 1 commit
    • David McKay's avatar
      feat/ca mount (#163) · cd267840
      David McKay authored
      * feat: support mounting a ca bundle into the certs directory
      
      * feat: support alternative secret for CA
      
      * fix: don't strip newline
      
      * Changing how images are passed in
      
      * Add conditional to override tag as per fede
      
      * Update to handle external commands and top level image
      
      * Updating changes
      
      * Fixed tagging
      
      * Adding helper named template to get the image
      
      * Template working
      
      * chore: version bump
      
      * fix: revert values.yaml changes
      Co-authored-by: 's avatarJames Nieper <james.nieper@gmail.com>
      cd267840
  19. 12 Aug, 2020 2 commits