-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bumping to the last version, bringin in bgp status Signed-off-by: Federico Paolinelli <[email protected]>
- Loading branch information
Showing
19 changed files
with
338 additions
and
28 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
dependencies: | ||
- name: crds | ||
repository: "" | ||
version: 0.0.16 | ||
digest: sha256:b54ee64c5e61f1dd38e89efc87ebd1e36cdb7c4dd7c897d9985040dccd713dba | ||
generated: "2024-11-22T11:40:47.152053909+01:00" | ||
version: 0.0.17 | ||
digest: sha256:8f233f695efb015d5aaad9bb1e8f8ee0b0b24c13356b15d40b96b40cd7eb2b25 | ||
generated: "2025-01-10T10:23:08.228305485+01:00" |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
4 changes: 4 additions & 0 deletions
4
bindata/deployment/helm/metallb/templates/servicemonitor.yaml
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.16.3 | ||
creationTimestamp: null | ||
name: servicebgpstatuses.metallb.io | ||
spec: | ||
group: metallb.io | ||
names: | ||
kind: ServiceBGPStatus | ||
listKind: ServiceBGPStatusList | ||
plural: servicebgpstatuses | ||
singular: servicebgpstatus | ||
scope: Namespaced | ||
versions: | ||
- additionalPrinterColumns: | ||
- jsonPath: .status.node | ||
name: Node | ||
type: string | ||
- jsonPath: .status.serviceName | ||
name: Service Name | ||
type: string | ||
- jsonPath: .status.serviceNamespace | ||
name: Service Namespace | ||
type: string | ||
name: v1beta1 | ||
schema: | ||
openAPIV3Schema: | ||
description: ServiceBGPStatus exposes the BGP peers a service is configured | ||
to be advertised to, per relevant node. | ||
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 | ||
spec: | ||
description: ServiceBGPStatusSpec defines the desired state of ServiceBGPStatus. | ||
type: object | ||
status: | ||
description: MetalLBServiceBGPStatus defines the observed state of ServiceBGPStatus. | ||
properties: | ||
node: | ||
description: Node indicates the node announcing the service. | ||
type: string | ||
x-kubernetes-validations: | ||
- message: Value is immutable | ||
rule: self == oldSelf | ||
peers: | ||
description: |- | ||
Peers indicate the BGP peers for which the service is configured to be advertised to. | ||
The service being actually advertised to a given peer depends on the session state and is not indicated here. | ||
items: | ||
type: string | ||
type: array | ||
serviceName: | ||
description: ServiceName indicates the service this status represents. | ||
type: string | ||
x-kubernetes-validations: | ||
- message: Value is immutable | ||
rule: self == oldSelf | ||
serviceNamespace: | ||
description: ServiceNamespace indicates the namespace of the service. | ||
type: string | ||
x-kubernetes-validations: | ||
- message: Value is immutable | ||
rule: self == oldSelf | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: null | ||
storedVersions: null |
This file contains 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
Oops, something went wrong.