Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
b07a5e141f
commit
abaf7183fe
|
@ -2,6 +2,25 @@
|
|||
|
||||
|
||||
|
||||
## [metallb-5.0.4](https://github.com/truecharts/charts/compare/metallb-4.0.21...metallb-5.0.4) (2022-11-06)
|
||||
|
||||
### Chore
|
||||
|
||||
- Auto-update chart README [skip ci]
|
||||
- Auto-update chart README [skip ci]
|
||||
- Auto-update chart README [skip ci]
|
||||
|
||||
### Feat
|
||||
|
||||
- rework metallb to use manifest-included metallb ([#4320](https://github.com/truecharts/charts/issues/4320))
|
||||
|
||||
### Fix
|
||||
|
||||
- Ensure metallb is running before creating resources ([#4321](https://github.com/truecharts/charts/issues/4321))
|
||||
|
||||
|
||||
|
||||
|
||||
## [metallb-5.0.3](https://github.com/truecharts/charts/compare/metallb-4.0.21...metallb-5.0.3) (2022-11-06)
|
||||
|
||||
### Chore
|
||||
|
@ -78,22 +97,3 @@
|
|||
|
||||
|
||||
## [metallb-4.0.17](https://github.com/truecharts/charts/compare/metallb-4.0.16...metallb-4.0.17) (2022-10-19)
|
||||
|
||||
### Chore
|
||||
|
||||
- Auto-update chart README [skip ci]
|
||||
- update helm general non-major ([#4122](https://github.com/truecharts/charts/issues/4122))
|
||||
|
||||
### Fix
|
||||
|
||||
- enable crd updating ([#4068](https://github.com/truecharts/charts/issues/4068))
|
||||
|
||||
|
||||
|
||||
|
||||
## [metallb-4.0.16](https://github.com/truecharts/charts/compare/metallb-4.0.15...metallb-4.0.16) (2022-10-12)
|
||||
|
||||
### Chore
|
||||
|
||||
- Auto-update chart README [skip ci]
|
||||
- update helm general non-major ([#4071](https://github.com/truecharts/charts/issues/4071))
|
|
@ -3,4 +3,4 @@ dependencies:
|
|||
repository: https://library-charts.truecharts.org
|
||||
version: 10.8.0
|
||||
digest: sha256:d785b2570d9d8e34bc823031f8475942fc79600ba0164ec2185e7d6d7c4db697
|
||||
generated: "2022-11-06T20:02:47.669989681Z"
|
||||
generated: "2022-11-06T21:27:48.415551776Z"
|
|
@ -22,7 +22,7 @@ sources:
|
|||
- https://github.com/metallb/metallb
|
||||
- https://metallb.universe.tf
|
||||
type: application
|
||||
version: 5.0.3
|
||||
version: 5.0.4
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- core
|
|
@ -4,7 +4,7 @@
|
|||
apiVersion: metallb.io/v1beta1
|
||||
kind: BGPAdvertisement
|
||||
metadata:
|
||||
name: {{ $.Release.Name }}-{{ .name }}
|
||||
name: {{ .name }}
|
||||
namespace: metallb-system
|
||||
spec:
|
||||
ipAddressPools:
|
|
@ -4,7 +4,7 @@
|
|||
apiVersion: metallb.io/v1beta1
|
||||
kind: Community
|
||||
metadata:
|
||||
name: {{ $.Release.Name }}-communities
|
||||
name: communities
|
||||
namespace: metallb-system
|
||||
spec:
|
||||
communities:
|
|
@ -4,7 +4,7 @@
|
|||
apiVersion: metallb.io/v1beta1
|
||||
kind: IPAddressPool
|
||||
metadata:
|
||||
name: {{ $.Release.Name }}-{{ .name }}
|
||||
name: {{ .name }}
|
||||
namespace: metallb-system
|
||||
spec:
|
||||
addresses:
|
|
@ -4,7 +4,7 @@
|
|||
apiVersion: metallb.io/v1beta1
|
||||
kind: L2Advertisement
|
||||
metadata:
|
||||
name: {{ $.Release.Name }}-{{ .name }}
|
||||
name: {{ .name }}
|
||||
namespace: metallb-system
|
||||
spec:
|
||||
ipAddressPools:
|
|
@ -4,7 +4,7 @@
|
|||
apiVersion: metallb.io/v1beta2
|
||||
kind: BGPPeer
|
||||
metadata:
|
||||
name: {{ $.Release.Name }}-{{ .name }}
|
||||
name: {{ .name }}
|
||||
namespace: metallb-system
|
||||
spec:
|
||||
{{- with .password }}
|
|
@ -1,5 +1,5 @@
|
|||
{{- define "metallb.wait" -}}
|
||||
{{- $fullName := include "tc.common.names.fullname" . -}}
|
||||
{{- define "metallb.wait" }}
|
||||
{{- $fullName := include "tc.common.names.fullname" . }}
|
||||
---
|
||||
apiVersion: batch/v1
|
||||
kind: Job
|
||||
|
@ -65,4 +65,4 @@ metadata:
|
|||
"helm.sh/hook": pre-install, pre-upgrade
|
||||
"helm.sh/hook-weight": "-2"
|
||||
"helm.sh/hook-delete-policy": hook-succeeded,before-hook-creation
|
||||
{{- end -}}
|
||||
{{- end }}
|
Loading…
Reference in New Issue