Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-05-30 20:50:46 +00:00
parent 9a6609ff67
commit ca7a744fb9
19 changed files with 31 additions and 11 deletions

View File

@ -1,4 +0,0 @@
## [metallb-config-1.0.1](https://github.com/truecharts/charts/compare/metallb-config-1.0.0...metallb-config-1.0.1) (2023-05-30)

View File

@ -4,6 +4,15 @@
## [metallb-config-1.1.0](https://github.com/truecharts/charts/compare/metallb-config-1.0.1...metallb-config-1.1.0) (2023-05-30)
### Feat
- add compatibility with new operator design ([#9298](https://github.com/truecharts/charts/issues/9298))
## [metallb-config-1.0.1](https://github.com/truecharts/charts/compare/metallb-config-1.0.0...metallb-config-1.0.1) (2023-05-30)

View File

@ -10,7 +10,7 @@ keywords:
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 12.10.4
version: 12.10.9
kubeVersion: ">=1.16.0-0"
maintainers:
- email: info@truecharts.org
@ -22,7 +22,7 @@ sources:
- https://github.com/metallb/metallb
- https://metallb.universe.tf
type: application
version: 1.0.1
version: 1.1.0
annotations:
truecharts.org/catagories: |
- core

View File

@ -0,0 +1,9 @@
## [metallb-config-1.1.0](https://github.com/truecharts/charts/compare/metallb-config-1.0.1...metallb-config-1.1.0) (2023-05-30)
### Feat
- add compatibility with new operator design ([#9298](https://github.com/truecharts/charts/issues/9298))

View File

@ -5,7 +5,7 @@ apiVersion: metallb.io/v1beta1
kind: BGPAdvertisement
metadata:
name: {{ .name }}
namespace: metallb-system
namespace: {{ $.Values.operatorNamespace }}
spec:
ipAddressPools:
{{- range .addressPools }}

View File

@ -5,7 +5,7 @@ apiVersion: metallb.io/v1beta1
kind: Community
metadata:
name: communities
namespace: metallb-system
namespace: {{ $.Values.operatorNamespace }}
spec:
communities:
{{- range .Values.Communities }}

View File

@ -5,7 +5,7 @@ apiVersion: metallb.io/v1beta1
kind: IPAddressPool
metadata:
name: {{ .name }}
namespace: metallb-system
namespace: {{ $.Values.operatorNamespace }}
spec:
addresses:
{{- range .addresses }}

View File

@ -5,7 +5,7 @@ apiVersion: metallb.io/v1beta1
kind: L2Advertisement
metadata:
name: {{ .name }}
namespace: metallb-system
namespace: {{ $.Values.operatorNamespace }}
spec:
ipAddressPools:
{{- range .addressPools }}

View File

@ -5,7 +5,7 @@ apiVersion: metallb.io/v1beta2
kind: BGPPeer
metadata:
name: {{ .name }}
namespace: metallb-system
namespace: {{ $.Values.operatorNamespace }}
spec:
{{- with .password }}
password: {{ . }}

View File

@ -1,6 +1,12 @@
{{/* Make sure all variables are set properly */}}
{{- include "tc.v1.common.loader.init" . }}
{{- $operatorNamespace := "metallb-system" -}}
{{- if .Values.operator.metallb -}}
{{ $operatorNamespace = ( $.Values.operator.metallb.namespace | default "metallb-system") }}
{{- end -}}
{{- $_ := set $.Values "operatorNamespace" $operatorNamespace -}}
{{/* Render the templates */}}
{{ include "tc.v1.common.loader.apply" . }}