aboutsummaryrefslogtreecommitdiffstats
path: root/build-root/vagrant
diff options
context:
space:
mode:
authorMikhail Sokolovskiy <sokolmish@gmail.com>2023-03-30 13:27:33 +0300
committerMikhail Sokolovskiy <sokolmish@gmail.com>2023-03-30 13:27:33 +0300
commit8309517f23b314e588bf3ad623250f1440908bd3 (patch)
tree8b8a26389c4bdc7de48e2e0c27d6ad67b1aba102 /build-root/vagrant
parent2844aa186f7d33bc35b99509bfd8e405e998df0b (diff)
vlib: fix segfault on panic in worker
Vlib panic uses longjmp to exit main loop, but workers don't set main_loop_exit field on initialization, so this jump corrupts registers and causes segfault. There I add clib_warning and abort if longjmp context hasn't been set. Type: fix Signed-off-by: Mikhail Sokolovskiy <sokolmish@gmail.com> Change-Id: I0d705f1f139c4083af75066aeb525964ed0aa202
Diffstat (limited to 'build-root/vagrant')
0 files changed, 0 insertions, 0 deletions
Integration testsGrokmirror user
aboutsummaryrefslogtreecommitdiffstats
path: root/fdio.infra.terraform/1n_nmd/variables.tf
blob: 598770eb13d933a2e6e19dad3aac13301a53e414 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
variable "nomad_acl" {
  description = "Nomad ACLs enabled/disabled"
  type        = bool
  default     = false
}

variable "nomad_provider_address" {
  description = "FD.io Nomad cluster address."
  type        = string
  default     = "http://nomad.service.consul:4646"
}

variable "nomad_provider_ca_file" {
  description = "A local file path to a PEM-encoded certificate authority."
  type        = string
  default     = "/etc/nomad.d/ssl/nomad-ca.pem"
}

variable "nomad_provider_cert_file" {
  description = "A local file path to a PEM-encoded certificate."
  type        = string
  default     = "/etc/nomad.d/ssl/nomad-cli.pem"
}

variable "nomad_provider_key_file" {
  description = "A local file path to a PEM-encoded private key."
  type        = string
  default     = "/etc/nomad.d/ssl/nomad-cli-key.pem"
}

variable "token" {
  description = "Vault root token"
  type        = string
  sensitive   = true
}