Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: traefik/traefik-helm-chart
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v25.0.0
Choose a base ref
...
head repository: traefik/traefik-helm-chart
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v26.0.0
Choose a head ref
  • 13 commits
  • 39 files changed
  • 8 contributors

Commits on Nov 2, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    fb820ee View commit details

Commits on Nov 6, 2023

  1. Copy the full SHA
    bde2a7c View commit details
  2. chore(deps): update docker.io/helmunittest/helm-unittest docker tag t…

    …o v3.13.1 (#955)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Nov 6, 2023
    Copy the full SHA
    8971ce1 View commit details
  3. Copy the full SHA
    2045843 View commit details
  4. Copy the full SHA
    f061628 View commit details

Commits on Nov 7, 2023

  1. feat: add file provider

    ebuildy authored Nov 7, 2023
    Copy the full SHA
    ddd6cee View commit details

Commits on Nov 14, 2023

  1. Copy the full SHA
    76dcb02 View commit details

Commits on Nov 23, 2023

  1. Copy the full SHA
    9c83a2a View commit details

Commits on Nov 27, 2023

  1. Copy the full SHA
    6a6efc1 View commit details

Commits on Dec 1, 2023

  1. Copy the full SHA
    cbddacb View commit details
  2. Copy the full SHA
    d31b991 View commit details

Commits on Dec 4, 2023

  1. Copy the full SHA
    a524e95 View commit details

Commits on Dec 5, 2023

  1. Copy the full SHA
    ed7e8bb View commit details
Showing with 729 additions and 413 deletions.
  1. +2 −2 Makefile
  2. +297 −198 traefik/Changelog.md
  3. +12 −16 traefik/Chart.yaml
  4. +7 −4 traefik/VALUES.md
  5. +1 −9 traefik/crds/traefik.containo.us_ingressroutes.yaml
  6. +1 −9 traefik/crds/traefik.containo.us_ingressroutetcps.yaml
  7. +1 −9 traefik/crds/traefik.containo.us_ingressrouteudps.yaml
  8. +1 −9 traefik/crds/traefik.containo.us_middlewares.yaml
  9. +1 −9 traefik/crds/traefik.containo.us_middlewaretcps.yaml
  10. +1 −9 traefik/crds/traefik.containo.us_serverstransports.yaml
  11. +1 −9 traefik/crds/traefik.containo.us_tlsoptions.yaml
  12. +1 −9 traefik/crds/traefik.containo.us_tlsstores.yaml
  13. +1 −9 traefik/crds/traefik.containo.us_traefikservices.yaml
  14. +1 −9 traefik/crds/traefik.io_ingressroutes.yaml
  15. +1 −9 traefik/crds/traefik.io_ingressroutetcps.yaml
  16. +1 −9 traefik/crds/traefik.io_ingressrouteudps.yaml
  17. +1 −9 traefik/crds/traefik.io_middlewares.yaml
  18. +1 −9 traefik/crds/traefik.io_middlewaretcps.yaml
  19. +1 −9 traefik/crds/traefik.io_serverstransports.yaml
  20. +1 −9 traefik/crds/traefik.io_tlsoptions.yaml
  21. +1 −9 traefik/crds/traefik.io_tlsstores.yaml
  22. +1 −9 traefik/crds/traefik.io_traefikservices.yaml
  23. +36 −9 traefik/templates/_podtemplate.tpl
  24. +1 −1 traefik/templates/_service.tpl
  25. +3 −0 traefik/templates/daemonset.yaml
  26. +6 −0 traefik/templates/deployment.yaml
  27. +5 −0 traefik/templates/gateway.yaml
  28. +1 −3 traefik/templates/prometheusrules.yaml
  29. +12 −0 traefik/templates/provider-file-cm.yaml
  30. +1 −3 traefik/templates/servicemonitor.yaml
  31. +22 −0 traefik/tests/deployment-config_test.yaml
  32. +15 −1 traefik/tests/gateway-config_test.yaml
  33. +7 −5 traefik/tests/pod-config_test.yaml
  34. +33 −0 traefik/tests/prometheusrules-config_test.yaml
  35. +124 −0 traefik/tests/provider-file_test.yaml
  36. +2 −2 traefik/tests/service-config_test.yaml
  37. +33 −0 traefik/tests/servicemonitor-config_test.yaml
  38. +56 −2 traefik/tests/traefik-config_test.yaml
  39. +36 −5 traefik/values.yaml
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.PHONY: lint test

IMAGE_HELM_UNITTEST=docker.io/helmunittest/helm-unittest:3.12.3-0.3.5
IMAGE_CHART_TESTING=quay.io/helmpack/chart-testing:v3.9.0
IMAGE_HELM_UNITTEST=docker.io/helmunittest/helm-unittest:3.13.1-0.3.5
IMAGE_CHART_TESTING=quay.io/helmpack/chart-testing:v3.10.1

traefik/tests/__snapshot__:
@mkdir traefik/tests/__snapshot__
Loading