Skip to content

Commit

Permalink
fix: correct issues with Grafana cloud monitoring
Browse files Browse the repository at this point in the history
  • Loading branch information
bancey committed Oct 9, 2024
1 parent 19a1ab1 commit 76b738e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions kubernetes/apps/base/grafana-cloud-monitoring/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,9 @@ spec:
exporter:
defaultClusterId: my-cluster
prometheus:
existingSecretName: grafana-cloud-monitoring
username_key: prometheus-username
password_key: prometheus-password
external:
url: prometheus-api-url
kube-state-metrics:
Expand Down
6 changes: 6 additions & 0 deletions terraform/modules/proxmox-vm/inputs-optional.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ variable "cpu_architecture" {
default = "x86_64"
}

variable "cpu_type" {
type = string
description = "The type to use for the CPU. Defaults to host."
default = "host"
}

variable "gateway_ip_address" {
type = string
description = "The IP address of the gateway."
Expand Down
1 change: 1 addition & 0 deletions terraform/modules/proxmox-vm/vm.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ resource "proxmox_virtual_environment_vm" "vm" {
cores = var.cpu_cores
sockets = var.cpu_sockets
architecture = var.cpu_architecture
type = var.cpu_type
}

memory {
Expand Down

0 comments on commit 76b738e

Please sign in to comment.