Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
9a6609ff67
commit
ca7a744fb9
|
@ -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)
|
||||
|
Binary file not shown.
|
@ -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)
|
||||
|
||||
|
|
@ -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
|
|
@ -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))
|
||||
|
||||
|
Binary file not shown.
|
@ -5,7 +5,7 @@ apiVersion: metallb.io/v1beta1
|
|||
kind: BGPAdvertisement
|
||||
metadata:
|
||||
name: {{ .name }}
|
||||
namespace: metallb-system
|
||||
namespace: {{ $.Values.operatorNamespace }}
|
||||
spec:
|
||||
ipAddressPools:
|
||||
{{- range .addressPools }}
|
|
@ -5,7 +5,7 @@ apiVersion: metallb.io/v1beta1
|
|||
kind: Community
|
||||
metadata:
|
||||
name: communities
|
||||
namespace: metallb-system
|
||||
namespace: {{ $.Values.operatorNamespace }}
|
||||
spec:
|
||||
communities:
|
||||
{{- range .Values.Communities }}
|
|
@ -5,7 +5,7 @@ apiVersion: metallb.io/v1beta1
|
|||
kind: IPAddressPool
|
||||
metadata:
|
||||
name: {{ .name }}
|
||||
namespace: metallb-system
|
||||
namespace: {{ $.Values.operatorNamespace }}
|
||||
spec:
|
||||
addresses:
|
||||
{{- range .addresses }}
|
|
@ -5,7 +5,7 @@ apiVersion: metallb.io/v1beta1
|
|||
kind: L2Advertisement
|
||||
metadata:
|
||||
name: {{ .name }}
|
||||
namespace: metallb-system
|
||||
namespace: {{ $.Values.operatorNamespace }}
|
||||
spec:
|
||||
ipAddressPools:
|
||||
{{- range .addressPools }}
|
|
@ -5,7 +5,7 @@ apiVersion: metallb.io/v1beta2
|
|||
kind: BGPPeer
|
||||
metadata:
|
||||
name: {{ .name }}
|
||||
namespace: metallb-system
|
||||
namespace: {{ $.Values.operatorNamespace }}
|
||||
spec:
|
||||
{{- with .password }}
|
||||
password: {{ . }}
|
|
@ -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" . }}
|
||||
|
Loading…
Reference in New Issue