summaryrefslogtreecommitdiffstats
path: root/src/vnet/qos
AgeCommit message (Expand)AuthorFilesLines
2021-10-11docs: nitfixes in FEATURE.yamlNathan Skrzypczak1-1/+1
2021-10-06docs: vnet comment nitfixesNathan Skrzypczak2-4/+4
2021-06-22qos: api cleanupFilip Tehlar1-54/+11
2020-11-27ip: Sub Address Family types. Feature enable for each SAFINeale Ranns1-16/+12
2020-01-10docs: Edit FEATURE.yaml files so they can be publishedJohn DeNisco1-1/+1
2020-01-07qos: Add FEATURE.yamlNeale Ranns1-0/+12
2020-01-03qos: api clenupJakub Grajciar1-7/+8
2019-12-10api: multiple connections per processDave Barach1-1/+1
2019-08-01qos: Uninitialised variable (coverity)Neale Ranns1-0/+3
2019-07-31qos: Store functionNeale Ranns5-6/+661
2019-07-24qos: QoS dump APIsNeale Ranns8-119/+597
2019-03-05qos: migrate old MULTIARCH macros to VLIB_NODE_FNFilip Tehlar4-703/+728
2018-11-15QoS: fix always recoding as IPNeale Ranns1-15/+25
2018-10-23c11 safe string handling supportDave Barach1-1/+1
2018-09-24Trivial: Clean up some typos.Paul Vinciguerra5-8/+8
2018-09-08L2 BVI/FIB: Update L2 FIB table when BVI's MAC changesNeale Ranns1-0/+2
2018-09-06Enum type on the API for QoS sourcesNeale Ranns2-14/+49
2018-07-20QOS: mark/record fix feature ordering c-n-p errorNeale Ranns1-5/+5
2018-07-20QoS: marking and recording for MPLS and VLANNeale Ranns2-18/+259
2018-07-19Remove unused argument to vlib_feature_nextDamjan Marion2-4/+3
2018-07-19qos record:fix disable on interface deleteEyal Bari1-1/+1
2018-07-18qos mark/record: fix disable-sw_if_index range checkEyal Bari2-2/+2
2018-05-04Harmonize vec/pool_get_aligned object sizes and alignment requestsDave Barach1-4/+9
2018-04-24Support QOS_SOURCE_IP recording from L2 input node.Igor Mikhailov (imichail)1-5/+76
2018-03-19QoS code coverity found errorsNeale Ranns1-2/+2
2018-03-16QoS recording and markingNeale Ranns10-0/+1586
or: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
# Nomad
variable "nomad_datacenters" {
  description = "Nomad data centers"
  type        = list(string)
  default     = [ "dc1" ]
}

# Grafana
variable "grafana_job_name" {
  description = "Grafana job name"
  type        = string
  default     = "grafana"
}

variable "grafana_group_count" {
  description = "Number of grafana group instances"
  type        = number
  default     = 1
}

variable "grafana_service_name" {
  description = "Grafana service name"
  type        = string
  default     = "grafana"
}

variable "grafana_container_image" {
  description = "Grafana docker image"
  type        = string
  default     = "grafana/grafana:7.3.7"
}

variable "grafana_use_canary" {
  description = "Uses canary deployment"
  type        = bool
  default     = false
}

variable "grafana_vault_secret" {
  description = "Set of properties to be able to fetch secret from vault"
  type        = object({
    use_vault_provider        = bool,
    vault_kv_policy_name      = string,
    vault_kv_path             = string,
    vault_kv_field_access_key = string,
    vault_kv_field_secret_key = string
  })
}

variable "grafana_cpu" {
  description = "Grafana CPU allocation"
  type        = number
  default     = 2000
}

variable "grafana_mem" {
  description = "Grafana RAM allocation"
  type        = number
  default     = 8192
}

variable "grafana_port" {
  description = "Grafana TCP allocation"
  type        = number
  default     = 3000
}