Skip to content
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

feat(helm): update chart external-dns to 1.15.0 #1823

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

wyoa-bot[bot]
Copy link
Contributor

@wyoa-bot wyoa-bot bot commented Jan 10, 2024

This PR contains the following updates:

Package Update Change
external-dns minor 1.13.1 -> 1.15.0

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


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 becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@wyoa-bot wyoa-bot bot requested a review from jr0dd as a code owner January 10, 2024 22:03
@wyoa-bot wyoa-bot bot added renovate/helm type/minor size/XS Denotes a PR that changes 0-9 lines, ignoring generated files. area/cluster Changes made in the cluster directory labels Jan 10, 2024
@wyoa-bot
Copy link
Contributor Author

wyoa-bot bot commented Jan 10, 2024

Path: cluster/apps/networking/external-dns/helm-release.yaml%0AVersion: 1.13.1 -> 1.15.0%0A%0Adiff%0A@@ -1,175 +1 @@%0A----%0A-# Source: external-dns/templates/serviceaccount.yaml%0A-apiVersion: v1%0A-kind: ServiceAccount%0A-metadata:%0A- name: external-dns%0A- namespace: default%0A- labels:%0A- app.kubernetes.io/name: external-dns%0A- app.kubernetes.io/instance: external-dns%0A- app.kubernetes.io/managed-by: Helm%0A----%0A-# Source: external-dns/templates/clusterrole.yaml%0A-apiVersion: rbac.authorization.k8s.io/v1%0A-kind: ClusterRole%0A-metadata:%0A- name: external-dns%0A- labels:%0A- app.kubernetes.io/name: external-dns%0A- app.kubernetes.io/instance: external-dns%0A- app.kubernetes.io/managed-by: Helm%0A-rules:%0A- - apiGroups: ["extensions", "networking.k8s.io"]%0A- resources: ["ingresses"]%0A- verbs: ["get", "watch", "list"]%0A----%0A-# Source: external-dns/templates/clusterrolebinding.yaml%0A-apiVersion: rbac.authorization.k8s.io/v1%0A-kind: ClusterRoleBinding%0A-metadata:%0A- name: external-dns-viewer%0A- labels:%0A- app.kubernetes.io/name: external-dns%0A- app.kubernetes.io/instance: external-dns%0A- app.kubernetes.io/managed-by: Helm%0A-roleRef:%0A- apiGroup: rbac.authorization.k8s.io%0A- kind: ClusterRole%0A- name: external-dns%0A-subjects:%0A- - kind: ServiceAccount%0A- name: external-dns%0A- namespace: default%0A----%0A-# Source: external-dns/templates/service.yaml%0A-apiVersion: v1%0A-kind: Service%0A-metadata:%0A- name: external-dns%0A- namespace: default%0A- labels:%0A- app.kubernetes.io/name: external-dns%0A- app.kubernetes.io/instance: external-dns%0A- app.kubernetes.io/managed-by: Helm%0A-spec:%0A- type: ClusterIP%0A- selector:%0A- app.kubernetes.io/name: external-dns%0A- app.kubernetes.io/instance: external-dns%0A- ports:%0A- - name: http%0A- port: 7979%0A- targetPort: http%0A- protocol: TCP%0A----%0A-# Source: external-dns/templates/deployment.yaml%0A-apiVersion: apps/v1%0A-kind: Deployment%0A-metadata:%0A- name: external-dns%0A- namespace: default%0A- labels:%0A- app.kubernetes.io/name: external-dns%0A- app.kubernetes.io/instance: external-dns%0A- app.kubernetes.io/managed-by: Helm%0A-spec:%0A- replicas: 1%0A- selector:%0A- matchLabels:%0A- app.kubernetes.io/name: external-dns%0A- app.kubernetes.io/instance: external-dns%0A- strategy:%0A- type: Recreate%0A- template:%0A- metadata:%0A- labels:%0A- app.kubernetes.io/name: external-dns%0A- app.kubernetes.io/instance: external-dns%0A- spec:%0A- serviceAccountName: external-dns%0A- securityContext:%0A- fsGroup: 65534%0A- seccompProfile:%0A- type: RuntimeDefault%0A- containers:%0A- - name: external-dns%0A- securityContext:%0A- allowPrivilegeEscalation: false%0A- capabilities:%0A- drop:%0A- - ALL%0A- readOnlyRootFilesystem: true%0A- runAsNonRoot: true%0A- runAsUser: 65534%0A- image: registry.k8s.io/external-dns/external-dns:v0.13.6%0A- imagePullPolicy: IfNotPresent%0A- env:%0A- - name: CF_API_TOKEN%0A- valueFrom:%0A- secretKeyRef:%0A- key: token%0A- name: cloudflare-token%0A- args:%0A- - --log-level=debug%0A- - --log-format=text%0A- - --interval=2m%0A- - --source=ingress%0A- - --policy=sync%0A- - --registry=txt%0A- - --txt-prefix=k8s.%0A- - --domain-filter=${SECRET_DOMAIN}%0A- - --provider=cloudflare%0A- - --cloudflare-proxied%0A- - --annotation-filter=external-dns.alpha.kubernetes.io/target%0A- ports:%0A- - name: http%0A- protocol: TCP%0A- containerPort: 7979%0A- livenessProbe:%0A- failureThreshold: 2%0A- httpGet:%0A- path: /healthz%0A- port: http%0A- initialDelaySeconds: 10%0A- periodSeconds: 10%0A- successThreshold: 1%0A- timeoutSeconds: 5%0A- readinessProbe:%0A- failureThreshold: 6%0A- httpGet:%0A- path: /healthz%0A- port: http%0A- initialDelaySeconds: 5%0A- periodSeconds: 10%0A- successThreshold: 1%0A- timeoutSeconds: 5%0A- resources:%0A- limits:%0A- memory: 250Mi%0A- requests:%0A- cpu: 25m%0A- memory: 100Mi%0A----%0A-# Source: external-dns/templates/servicemonitor.yaml%0A-apiVersion: monitoring.coreos.com/v1%0A-kind: ServiceMonitor%0A-metadata:%0A- name: external-dns%0A- namespace: default%0A- labels:%0A- app.kubernetes.io/name: external-dns%0A- app.kubernetes.io/instance: external-dns%0A- app.kubernetes.io/managed-by: Helm%0A-spec:%0A- jobLabel: external-dns%0A- namespaceSelector:%0A- matchNames:%0A- - default%0A- selector:%0A- matchLabels:%0A- app.kubernetes.io/name: external-dns%0A- app.kubernetes.io/instance: external-dns%0A- endpoints:%0A- - port: http%0A- path: /metrics%0A+%0A

@wyoa-bot
Copy link
Contributor Author

wyoa-bot bot commented Jan 10, 2024

🦙 MegaLinter status: ✅ SUCCESS

Descriptor Linter Files Fixed Errors Elapsed time
✅ YAML yamllint 1 0 0.2s

See detailed report in MegaLinter reports
Set VALIDATE_ALL_CODEBASE: true in mega-linter.yml to validate all sources, not only the diff

MegaLinter is graciously provided by OX Security

@wyoa-bot wyoa-bot bot force-pushed the renovate/external-dns-1.x branch from 3dcf898 to edc10bc Compare January 12, 2024 08:03
@wyoa-bot wyoa-bot bot changed the title feat(helm): update chart external-dns to 1.14.0 feat(helm): update chart external-dns to 1.14.1 Jan 12, 2024
@wyoa-bot wyoa-bot bot force-pushed the renovate/external-dns-1.x branch from edc10bc to 75c7a55 Compare January 22, 2024 12:03
@wyoa-bot wyoa-bot bot changed the title feat(helm): update chart external-dns to 1.14.1 feat(helm): update chart external-dns to 1.14.2 Jan 22, 2024
@wyoa-bot wyoa-bot bot changed the title feat(helm): update chart external-dns to 1.14.2 feat(helm): update chart external-dns to 1.14.3 Jan 26, 2024
@wyoa-bot wyoa-bot bot force-pushed the renovate/external-dns-1.x branch from 75c7a55 to 99cf21e Compare January 26, 2024 14:02
@wyoa-bot wyoa-bot bot force-pushed the renovate/external-dns-1.x branch from 99cf21e to c9eab79 Compare April 5, 2024 16:11
@wyoa-bot wyoa-bot bot changed the title feat(helm): update chart external-dns to 1.14.3 feat(helm): update chart external-dns to 1.14.4 Apr 5, 2024
@wyoa-bot wyoa-bot bot force-pushed the renovate/external-dns-1.x branch from c9eab79 to e9f514e Compare June 10, 2024 16:09
@wyoa-bot wyoa-bot bot changed the title feat(helm): update chart external-dns to 1.14.4 feat(helm): update chart external-dns to 1.14.5 Jun 10, 2024
| datasource | package      | from   | to     |
| ---------- | ------------ | ------ | ------ |
| helm       | external-dns | 1.13.1 | 1.15.0 |
@wyoa-bot wyoa-bot bot force-pushed the renovate/external-dns-1.x branch from e9f514e to 90eafec Compare September 11, 2024 20:11
@wyoa-bot wyoa-bot bot changed the title feat(helm): update chart external-dns to 1.14.5 feat(helm): update chart external-dns to 1.15.0 Sep 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/cluster Changes made in the cluster directory renovate/helm size/XS Denotes a PR that changes 0-9 lines, ignoring generated files. type/minor
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants