-
Notifications
You must be signed in to change notification settings - Fork 1
feat(helm)!: Update Chart traefik (36.3.0 → 37.1.2) #640
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
pipelines-github-app
wants to merge
1
commit into
main
Choose a base branch
from
renovate/major-37-traefik-k0s
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+1
−1
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- main/traefik_gitops_manifests_traefik_k0s_manifest_main.yaml 2025-10-16 03:33:45.376381215 +0000
+++ pr/traefik_gitops_manifests_traefik_k0s_manifest_pr.yaml 2025-10-16 03:33:44.696372044 +0000
@@ -1,52 +1,52 @@
---
# Source: traefik/charts/traefik/templates/poddisruptionbudget.yaml
apiVersion: policy/v1beta1
kind: PodDisruptionBudget
metadata:
name: traefik
namespace: default
labels:
app.kubernetes.io/name: traefik
app.kubernetes.io/instance: traefik-default
- helm.sh/chart: traefik-36.3.0
+ helm.sh/chart: traefik-37.1.2
app.kubernetes.io/managed-by: Helm
spec:
selector:
matchLabels:
app.kubernetes.io/name: traefik
app.kubernetes.io/instance: traefik-default
maxUnavailable: 1
---
# Source: traefik/charts/traefik/templates/rbac/serviceaccount.yaml
kind: ServiceAccount
apiVersion: v1
metadata:
name: traefik
namespace: default
labels:
app.kubernetes.io/name: traefik
app.kubernetes.io/instance: traefik-default
- helm.sh/chart: traefik-36.3.0
+ helm.sh/chart: traefik-37.1.2
app.kubernetes.io/managed-by: Helm
annotations:
automountServiceAccountToken: false
---
# Source: traefik/charts/traefik/templates/rbac/clusterrole.yaml
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: traefik-default
labels:
app.kubernetes.io/name: traefik
app.kubernetes.io/instance: traefik-default
- helm.sh/chart: traefik-36.3.0
+ helm.sh/chart: traefik-37.1.2
app.kubernetes.io/managed-by: Helm
rules:
- apiGroups:
- ""
resources:
- configmaps
- nodes
- services
verbs:
- get
@@ -55,20 +55,26 @@
- apiGroups:
- discovery.k8s.io
resources:
- endpointslices
verbs:
- list
- watch
- apiGroups:
- ""
resources:
+ - pods
+ verbs:
+ - get
+ - apiGroups:
+ - ""
+ resources:
- secrets
verbs:
- get
- list
- watch
- apiGroups:
- extensions
- networking.k8s.io
resources:
- ingressclasses
@@ -103,41 +109,41 @@
- watch
---
# Source: traefik/charts/traefik/templates/rbac/clusterrolebinding.yaml
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: traefik-default
labels:
app.kubernetes.io/name: traefik
app.kubernetes.io/instance: traefik-default
- helm.sh/chart: traefik-36.3.0
+ helm.sh/chart: traefik-37.1.2
app.kubernetes.io/managed-by: Helm
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: traefik-default
subjects:
- kind: ServiceAccount
name: traefik
namespace: default
---
# Source: traefik/charts/traefik/templates/service.yaml
apiVersion: v1
kind: Service
metadata:
name: traefik
namespace: default
labels:
app.kubernetes.io/name: traefik
app.kubernetes.io/instance: traefik-default
- helm.sh/chart: traefik-36.3.0
+ helm.sh/chart: traefik-37.1.2
app.kubernetes.io/managed-by: Helm
annotations:
spec:
type: LoadBalancer
selector:
app.kubernetes.io/name: traefik
app.kubernetes.io/instance: traefik-default
ipFamilyPolicy: PreferDualStack
ports:
- port: 80
@@ -151,21 +157,21 @@
---
# Source: traefik/charts/traefik/templates/deployment.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
name: traefik
namespace: default
labels:
app.kubernetes.io/name: traefik
app.kubernetes.io/instance: traefik-default
- helm.sh/chart: traefik-36.3.0
+ helm.sh/chart: traefik-37.1.2
app.kubernetes.io/managed-by: Helm
annotations:
spec:
replicas: 1
selector:
matchLabels:
app.kubernetes.io/name: traefik
app.kubernetes.io/instance: traefik-default
strategy:
type: RollingUpdate
@@ -175,21 +181,21 @@
minReadySeconds: 0
template:
metadata:
annotations:
prometheus.io/scrape: "true"
prometheus.io/path: "/metrics"
prometheus.io/port: "9100"
labels:
app.kubernetes.io/name: traefik
app.kubernetes.io/instance: traefik-default
- helm.sh/chart: traefik-36.3.0
+ helm.sh/chart: traefik-37.1.2
app.kubernetes.io/managed-by: Helm
spec:
serviceAccountName: traefik
automountServiceAccountToken: true
terminationGracePeriodSeconds: 60
hostNetwork: false
containers:
- image: docker.io/traefik:v3.5.3
imagePullPolicy: IfNotPresent
name: traefik
@@ -233,51 +239,51 @@
capabilities:
drop:
- ALL
readOnlyRootFilesystem: true
volumeMounts:
- name: data
mountPath: /data
- name: tmp
mountPath: /tmp
args:
- - "--global.checkNewVersion"
- "--entryPoints.metrics.address=:9100/tcp"
- "--entryPoints.traefik.address=:8080/tcp"
- "--entryPoints.web.address=:8000/tcp"
- "--entryPoints.websecure.address=:8443/tcp"
- "--api.dashboard=true"
- "--ping=true"
- "--metrics.prometheus=true"
- "--metrics.prometheus.entrypoint=metrics"
- "--providers.kubernetescrd"
- "--providers.kubernetescrd.allowCrossNamespace=true"
- "--providers.kubernetescrd.allowExternalNameServices=true"
- "--providers.kubernetescrd.allowEmptyServices=true"
- "--providers.kubernetesingress"
- "--providers.kubernetesingress.allowExternalNameServices=true"
- "--providers.kubernetesingress.allowEmptyServices=true"
- "--providers.kubernetesingress.ingressendpoint.publishedservice=default/traefik"
- "--entryPoints.web.http.redirections.entryPoint.to=:443"
- "--entryPoints.web.http.redirections.entryPoint.scheme=https"
- "--entryPoints.websecure.http.tls=true"
- "--log.level=TRACE"
-
env:
- name: POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
- name: POD_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
+ - name: USER
+ value: traefik
volumes:
- name: data
emptyDir: {}
- name: tmp
emptyDir: {}
tolerations:
- key: CriticalAddonsOnly
operator: Exists
- effect: NoSchedule
key: node-role.kubernetes.io/control-plane
@@ -293,21 +299,21 @@
---
# Source: traefik/charts/traefik/templates/ingressclass.yaml
apiVersion: networking.k8s.io/v1
kind: IngressClass
metadata:
annotations:
ingressclass.kubernetes.io/is-default-class: "true"
labels:
app.kubernetes.io/name: traefik
app.kubernetes.io/instance: traefik-default
- helm.sh/chart: traefik-36.3.0
+ helm.sh/chart: traefik-37.1.2
app.kubernetes.io/managed-by: Helm
name: traefik
spec:
controller: traefik.io/ingress-controller
---
# Source: traefik/templates/extsecret-wildcard-cert.yaml
apiVersion: external-secrets.io/v1
kind: ExternalSecret
metadata:
name: fredcorp-wildcard
@@ -428,15 +434,15 @@
---
# Source: traefik/charts/traefik/templates/tlsstore.yaml
apiVersion: traefik.io/v1alpha1
kind: TLSStore
metadata:
name: default
namespace: default
labels:
app.kubernetes.io/name: traefik
app.kubernetes.io/instance: traefik-default
- helm.sh/chart: traefik-36.3.0
+ helm.sh/chart: traefik-37.1.2
app.kubernetes.io/managed-by: Helm
spec:
defaultCertificate:
secretName: k0s-fullstack-wildcard
|
059cc85
to
e77b864
Compare
32e6875
to
8927902
Compare
3275159
to
6fa64cf
Compare
ddc593c
to
9a7278e
Compare
30acfc4
to
3e2d239
Compare
2332389
to
3024f8d
Compare
3330b4c
to
d84996d
Compare
af5b7e7
to
cd90237
Compare
6e23c3f
to
3577db4
Compare
| datasource | package | from | to | | ---------- | ------- | ------ | ------ | | helm | traefik | 36.3.0 | 37.1.2 | Co-authored-by: renovate[bot] <[email protected]>
3577db4
to
0136655
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
None yet
0 participants
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
36.3.0
->37.1.2
Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
traefik/traefik-helm-chart (traefik)
v37.1.2
Compare Source
🚀 Features
🐛 Bug fixes
📦 Others
v37.1.1
Compare Source
🚀 Features
📦 Others
New Contributors
Full Changelog: traefik/traefik-helm-chart@v37.1.0...v37.1.1
v37.1.0
Compare Source
🚀 Features
🐛 Bug fixes
📦 Others
--global.checkNewVersion
when it differs from default #1493 by @ChristianCiach$root
hacks in favor of using `- #1495 by @jnoordsijNew Contributors
Full Changelog: traefik/traefik-helm-chart@v37.0.0...v37.1.0
v37.0.0
Compare Source
💥 BREAKING CHANGES
🚀 Features
🐛 Bug fixes
tracing.sampleRate
to be set to zero #1483 by @yogeek📦 Others
VALUES.md
#1481 by @jnoordsijNew Contributors
Full Changelog: traefik/traefik-helm-chart@v36.3.0...v37.0.0
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot.