1. 11 Dec, 2020 1 commit
    • Abhimanyu Saharan's avatar
      Added metrics key to enable/disable internal metrics and minor bug fixes for influxdb2 (#237) · e7e6493a
      Abhimanyu Saharan authored
      * Updated apiVersion for Helm v3
      
      * Updated tag
      
      * Collect internal metrics if enabled
      
      * Enable port 8888 if metrics enabled
      
      * Bumped up chart version
      
      * Added icon from Github
      
      * Fixed typo
      
      * Keep PVC unless removed manually
      
      * Added securityContext
      
      * Added icon as required by v2
      
      * Updated appVersion
      
      * Bumped up chart version
      
      * Added missing v in the tag
      
      * Updated appVersion for telegraf to match the tag
      
      * Added missing v for tag
      
      * Fixed input not defined issue
      
      * Updated Influxdb2 version
      
      * Update Chart.yaml
      e7e6493a
  2. 30 Nov, 2020 2 commits
  3. 26 Nov, 2020 1 commit
  4. 16 Nov, 2020 2 commits
  5. 24 Oct, 2020 1 commit
  6. 23 Oct, 2020 1 commit
  7. 22 Oct, 2020 2 commits
  8. 17 Oct, 2020 1 commit
  9. 15 Oct, 2020 1 commit
  10. 14 Oct, 2020 1 commit
  11. 13 Oct, 2020 1 commit
  12. 12 Oct, 2020 3 commits
  13. 09 Oct, 2020 8 commits
  14. 08 Oct, 2020 2 commits
  15. 01 Oct, 2020 3 commits
  16. 29 Sep, 2020 1 commit
  17. 24 Sep, 2020 3 commits
  18. 22 Sep, 2020 4 commits
  19. 15 Sep, 2020 1 commit
  20. 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