Skip to content

Commit

Permalink
fix: set fluent-bit container name using correct variable name (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
lemaitre-aneo authored Nov 13, 2024
2 parents 8829063 + ee6ff59 commit 2f61098
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion armonik/compute-plane.tf
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ resource "kubernetes_deployment" "compute_plane" {
dynamic "container" {
for_each = (!var.fluent_bit.is_daemonset ? [1] : [])
content {
name = var.fluent_bit.name
name = var.fluent_bit.container_name
image = "${var.fluent_bit.image}:${var.fluent_bit.tag}"
image_pull_policy = "IfNotPresent"
env_from {
Expand Down
2 changes: 1 addition & 1 deletion armonik/control-plane.tf
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ resource "kubernetes_deployment" "control_plane" {
dynamic "container" {
for_each = (!var.fluent_bit.is_daemonset ? [1] : [])
content {
name = var.fluent_bit.name
name = var.fluent_bit.container_name
image = "${var.fluent_bit.image}:${var.fluent_bit.tag}"
image_pull_policy = "IfNotPresent"
env_from {
Expand Down

0 comments on commit 2f61098

Please sign in to comment.