-
Notifications
You must be signed in to change notification settings - Fork 2
fix(helm): update chart metallb ( 0.15.2 → 0.15.3 ) #3058
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
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/metallb-0.x
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.
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
|
Path: --- /tmp/tmp.QdOSWSzk2q 2025-12-31 13:55:09.215431043 +0000
+++ /tmp/tmp.bt6sYWagBR 2025-12-31 13:55:09.602433938 +0000
@@ -45,6 +45,7 @@
- ^kube-ipvs.*
- ^cni.*
- ^nodelocaldns.*
+ - ^lxc.*
---
# Source: metallb/charts/metallb/charts/crds/templates/crds.yaml
@@ -52,7 +53,7 @@
kind: CustomResourceDefinition
metadata:
annotations:
- controller-gen.kubebuilder.io/version: v0.17.2
+ controller-gen.kubebuilder.io/version: v0.19.0
name: bfdprofiles.metallb.io
spec:
group: metallb.io
@@ -175,7 +176,7 @@
kind: CustomResourceDefinition
metadata:
annotations:
- controller-gen.kubebuilder.io/version: v0.17.2
+ controller-gen.kubebuilder.io/version: v0.19.0
name: bgpadvertisements.metallb.io
spec:
group: metallb.io
@@ -393,7 +394,7 @@
kind: CustomResourceDefinition
metadata:
annotations:
- controller-gen.kubebuilder.io/version: v0.17.2
+ controller-gen.kubebuilder.io/version: v0.19.0
name: bgppeers.metallb.io
spec:
conversion:
@@ -766,7 +767,7 @@
kind: CustomResourceDefinition
metadata:
annotations:
- controller-gen.kubebuilder.io/version: v0.17.2
+ controller-gen.kubebuilder.io/version: v0.19.0
name: communities.metallb.io
spec:
group: metallb.io
@@ -833,7 +834,144 @@
kind: CustomResourceDefinition
metadata:
annotations:
- controller-gen.kubebuilder.io/version: v0.17.2
+ controller-gen.kubebuilder.io/version: v0.19.0
+ name: configurationstates.metallb.io
+spec:
+ group: metallb.io
+ names:
+ kind: ConfigurationState
+ listKind: ConfigurationStateList
+ plural: configurationstates
+ singular: configurationstate
+ scope: Namespaced
+ versions:
+ - additionalPrinterColumns:
+ - jsonPath: .status.result
+ name: Result
+ type: string
+ - jsonPath: .status.errorSummary
+ name: ErrorSummary
+ type: string
+ - jsonPath: .metadata.creationTimestamp
+ name: Age
+ type: date
+ name: v1beta1
+ schema:
+ openAPIV3Schema:
+ description: |-
+ ConfigurationState is a status-only CRD that reports configuration validation results from MetalLB components.
+ Labels:
+ - metallb.io/component-type: "controller" or "speaker"
+ - metallb.io/node-name: node name (only for speaker)
+ properties:
+ apiVersion:
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
+ type: string
+ kind:
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
+ type: string
+ metadata:
+ type: object
+ status:
+ description: ConfigurationStateStatus defines the observed state of
+ ConfigurationState.
+ properties:
+ conditions:
+ description: Conditions contains the status conditions from the reconcilers
+ running in this component.
+ items:
+ description: Condition contains details for one aspect of the current state of
+ this API Resource.
+ properties:
+ lastTransitionTime:
+ description: |-
+ lastTransitionTime is the last time the condition transitioned from one status to another.
+ This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable.
+ format: date-time
+ type: string
+ message:
+ description: |-
+ message is a human readable message indicating details about the transition.
+ This may be an empty string.
+ maxLength: 32768
+ type: string
+ observedGeneration:
+ description: |-
+ observedGeneration represents the .metadata.generation that the condition was set based upon.
+ For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date
+ with respect to the current state of the instance.
+ format: int64
+ minimum: 0
+ type: integer
+ reason:
+ description: |-
+ reason contains a programmatic identifier indicating the reason for the condition's last transition.
+ Producers of specific condition types may define expected values and meanings for this field,
+ and whether the values are considered a guaranteed API.
+ The value should be a CamelCase string.
+ This field may not be empty.
+ maxLength: 1024
+ minLength: 1
+ pattern: ^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$
+ type: string
+ status:
+ description: status of the condition, one of True, False, Unknown.
+ enum:
+ - "True"
+ - "False"
+ - Unknown
+ type: string
+ type:
+ description: type of condition in CamelCase or in foo.example.com/CamelCase.
+ maxLength: 316
+ pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$
+ type: string
+ required:
+ - lastTransitionTime
+ - message
+ - reason
+ - status
+ - type
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - type
+ x-kubernetes-list-type: map
+ errorSummary:
+ description: |-
+ ErrorSummary contains the aggregated error messages from reconciliation failures.
+ This field is empty when Result is "Valid".
+ type: string
+ result:
+ description: Result indicates the configuration validation result.
+ enum:
+ - Valid
+ - Invalid
+ - Unknown
+ type: string
+ type: object
+ type: object
+ served: true
+ storage: true
+ subresources:
+ status: {}
+
+---
+# Source: metallb/charts/metallb/charts/crds/templates/crds.yaml
+apiVersion: apiextensions.k8s.io/v1
+kind: CustomResourceDefinition
+metadata:
+ annotations:
+ controller-gen.kubebuilder.io/version: v0.19.0
name: ipaddresspools.metallb.io
spec:
group: metallb.io
@@ -1070,7 +1208,7 @@
kind: CustomResourceDefinition
metadata:
annotations:
- controller-gen.kubebuilder.io/version: v0.17.2
+ controller-gen.kubebuilder.io/version: v0.19.0
name: l2advertisements.metallb.io
spec:
group: metallb.io
@@ -1258,7 +1396,7 @@
kind: CustomResourceDefinition
metadata:
annotations:
- controller-gen.kubebuilder.io/version: v0.17.2
+ controller-gen.kubebuilder.io/version: v0.19.0
name: servicebgpstatuses.metallb.io
spec:
group: metallb.io
@@ -1347,7 +1485,7 @@
kind: CustomResourceDefinition
metadata:
annotations:
- controller-gen.kubebuilder.io/version: v0.17.2
+ controller-gen.kubebuilder.io/version: v0.19.0
name: servicel2statuses.metallb.io
spec:
group: metallb.io
@@ -1469,12 +1607,19 @@
"bgppeers.metallb.io",
"ipaddresspools.metallb.io",
"l2advertisements.metallb.io",
- "communities.metallb.io"
+ "communities.metallb.io",
+ "configurationstates.metallb.io"
]
verbs: [ "create", "delete", "get", "list", "patch", "update", "watch" ]
- apiGroups: [ "apiextensions.k8s.io" ]
resources: [ "customresourcedefinitions" ]
verbs: [ "list", "watch" ]
+ - apiGroups: [ "metallb.io" ]
+ resources: [ "configurationstates" ]
+ verbs: [ "create", "delete", "get", "list", "patch", "update", "watch" ]
+ - apiGroups: [ "metallb.io" ]
+ resources: [ "configurationstates/status" ]
+ verbs: [ "get", "patch", "update" ]
---
# Source: metallb/charts/metallb/templates/rbac.yaml
@@ -1493,7 +1638,13 @@
resources: [ "events" ]
verbs: [ "create", "patch" ]
- apiGroups: [ "metallb.io" ]
- resources: [ "servicel2statuses", "servicel2statuses/status" ]
+ resources:
+ [
+ "servicel2statuses",
+ "servicel2statuses/status",
+ "configurationstates",
+ "configurationstates/status"
+ ]
verbs: [ "*" ]
---
@@ -1718,7 +1869,7 @@
name: metallb-excludel2
containers:
- name: speaker
- image: quay.io/metallb/speaker:v0.15.2
+ image: quay.io/metallb/speaker:v0.15.3
args:
- --port=7472
- --log-level=info
@@ -1828,10 +1979,11 @@
runAsUser: 65534
containers:
- name: controller
- image: quay.io/metallb/controller:v0.15.2
+ image: quay.io/metallb/controller:v0.15.3
args:
- --port=7472
- --log-level=info
+ - --webhook-mode=enabled
- --tls-min-version=VersionTLS12
env:
- name: METALLB_ML_SECRET_NAME |
| datasource | package | from | to | | ---------- | ------- | ------ | ------ | | helm | metallb | 0.15.2 | 0.15.3 | Signed-off-by: Roger Rumao <rogerrum@users.noreply.github.com>
be3bb32 to
13e7a02
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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:
0.15.2→0.15.3Release Notes
metallb/metallb (metallb)
v0.15.3Compare Source
See the release notes for the details:
https://metallb.universe.tf/release-notes/#version-0-15-3
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.
This PR was generated by Mend Renovate. View the repository job log.