mirror of
https://github.com/kemko/nomad.git
synced 2026-01-01 16:05:42 +03:00
The node identity TTL defaults to 24hr but can be altered by setting the node identity TTL parameter. In order to allow setting and viewing the value, the field is now plumbed through the CLI and HTTP API. In order to parse the HCL, a new helper package has been created which contains generic parsing and decoding functionality for dealing with HCL that contains time durations. hclsimple can be used when this functionality is not needed. In order to parse the JSON, custom marshal and unmarshal functions have been created as used in many other places. The node pool init command has been updated to include this new parameter, although commented out, so reference. The info command now includes the TTL in its output too.
50 lines
1.1 KiB
Go
50 lines
1.1 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package hcl
|
|
|
|
import (
|
|
"reflect"
|
|
"time"
|
|
|
|
"github.com/hashicorp/hcl/v2"
|
|
"github.com/hashicorp/hcl/v2/gohcl"
|
|
"github.com/hashicorp/hcl/v2/hclparse"
|
|
)
|
|
|
|
type Parser struct {
|
|
parser *hclparse.Parser
|
|
decoder *gohcl.Decoder
|
|
}
|
|
|
|
// NewParser returns a new Parser instance which supports decoding time.Duration
|
|
// parameters by default.
|
|
func NewParser() *Parser {
|
|
|
|
// Create our base decoder, so we can register custom decoders on it.
|
|
decoder := &gohcl.Decoder{}
|
|
|
|
// Register default custom decoders here which currently only includes
|
|
// time.Duration parsing.
|
|
dur := time.Duration(0)
|
|
decoder.RegisterExpressionDecoder(reflect.TypeOf(dur), DecodeDuration)
|
|
decoder.RegisterExpressionDecoder(reflect.TypeOf(&dur), DecodeDuration)
|
|
|
|
return &Parser{
|
|
decoder: decoder,
|
|
parser: hclparse.NewParser(),
|
|
}
|
|
}
|
|
|
|
func (p *Parser) Parse(src []byte, dst any, filename string) hcl.Diagnostics {
|
|
|
|
hclFile, parseDiag := p.parser.ParseHCL(src, filename)
|
|
|
|
if parseDiag.HasErrors() {
|
|
return parseDiag
|
|
}
|
|
|
|
decodeDiag := p.decoder.DecodeBody(hclFile.Body, nil, dst)
|
|
return decodeDiag
|
|
}
|