Skip to content

Commit

Permalink
feat: update chart coredhcp to 0.3.0
Browse files Browse the repository at this point in the history
Update the chart's coredhcp image to 0.3.0 and configure single port
mode.
  • Loading branch information
rainest committed Jan 9, 2025
1 parent 332d053 commit bf1f836
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions lbnl/helm/templates/coredhcp/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ data:
- range: /leases/leases.txt {{ .Values.coredhcp.config.range.start }} {{ .Values.coredhcp.config.range.end }} {{ .Values.coredhcp.config.range.duration }}
#
# CoreSMD config
# Args: ochami_base_url boot_script_base_url ca_cert_path cache_update_interval long_lease_time
# TODO SMD does not currently provide HTTPS, but we have to provide a cert for the positional arguments. "" disables HTTPS.
- coresmd: http://smd:{{ .Values.smd.service.port }} http://bss:{{ .Values.bss.service.port }} "" 30s 1h
# Args: ochami_base_url boot_script_base_url ca_cert_path cache_update_interval long_lease_time single_port_mode
# SMD does not currently provide HTTPS, but we have to provide a cert for the positional arguments, so "" in arg 3 disables HTTPS.
# We need single port mode to allow TFTP requests to traverse container network NAT tables successfully.
- coresmd: http://smd:{{ .Values.smd.service.port }} http://bss:{{ .Values.bss.service.port }} "" 30s 1h true
#
# Optionally include the file plugin here if it matters which IPs get assigned to which
# MACs. Otherwise, unknown MACs get passed to the bootloop "catch-all" plugin below.
Expand Down
2 changes: 1 addition & 1 deletion lbnl/helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ coredhcp:
repository: ghcr.io/openchami
name: coredhcp
pullPolicy: IfNotPresent
tag: v0.2.1
tag: v0.3.0

service:
tftp:
Expand Down

0 comments on commit bf1f836

Please sign in to comment.