v0.3.54
This release adds some new template functions to HelmGenerator
and KustomizeGenerator
.
-
Template functions for bitwise operations:
func bitwiseShiftLeft(by any, arg any) (uint64, error)
func bitwiseShiftRight(by any, arg any) (uint64, error)
func bitwiseAnd(args ...any) (uint64, error)
func bitwiseOr(args ...any) (uint64, error)
func bitwiseXor(args ...any) (uint64, error)
-
Functions for IPv4 address handling:
func parseIPv4Address(data any) (uint32, error)
func formatIPv4Address(data any) (string, error)