Merge "skip generating etherenet_mac_address when null"

This commit is contained in:
Zuul 2021-09-01 07:39:59 +00:00 committed by Gerrit Code Review
commit d78f3e5c11
2 changed files with 12 additions and 4 deletions

View File

@ -18,10 +18,16 @@ metadata:
image: localhost/templater
values:
hosts:
- macAddress: 00:aa:bb:cc:dd
- macAddresses:
oam: 00:aa:bb:cc:dd
pxe: 00:aa:bb:cc:ee
name: node-1
- macAddress: 00:aa:bb:cc:ee
- macAddresses:
oam: 00:aa:bb:cc:ff
name: node-2
- macAddresses:
pxe: 00:aa:bb:cc:22
name: node-3
template: |
{{ range .hosts -}}
---
@ -30,5 +36,7 @@ template: |
metadata:
name: {{ .name }}
spec:
bootMACAddress: {{ .macAddress }}
{{- if and (.macAddresses) (.macAddresses.oam) }}
bootMACAddress: {{ .macAddresses.oam }}
{{- end }}
{{ end -}}

View File

@ -92,7 +92,7 @@ template: |
{{- range $envAll.commonNetworking.links }}
-
{{ toYaml . | indent 6 }}
{{- if $host.macAddresses }}
{{- if and ($host.macAddresses) (index $host.macAddresses .id) }}
ethernet_mac_address: {{ index $host.macAddresses .id }}
{{- end }}
{{- end }}