Skip to content

Instantly share code, notes, and snippets.

@ekristen
Created April 27, 2023 16:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ekristen/02e2d39a695dd12abc9e29514d0698e9 to your computer and use it in GitHub Desktop.
Save ekristen/02e2d39a695dd12abc9e29514d0698e9 to your computer and use it in GitHub Desktop.

Constrained Version

helm template test grafana/promtail --version 4.2.1 --values test.yaml
      volumes:
        - name: config
          secret:
            secretName: test-promtail
        - name: run
          hostPath:
            path: /run/promtail
        - hostPath:
            path: /var/log/pods
          name: pods
        - emptyDir: {}
          name: run

Latest

helm template test grafana/promtail --values test.yaml
      volumes:
        - name: config
          secret:
            secretName: test-promtail
        - hostPath:
            path: /var/log/pods
          name: pods
        - emptyDir: {}
          name: run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment