Skip to content

Commit

Permalink
fix: operator tf
Browse files Browse the repository at this point in the history
  • Loading branch information
avatxus committed Dec 11, 2023
1 parent 8b3a9d4 commit 9ce472d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bootstrap/feature/operator.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ resource "kubernetes_deployment_v1" "operator" {
container {
image = "ghcr.io/demeter-run/ext-cardano-kupo-operator:${var.operator_image_tag}"
name = "main"
command = ["npm", "run", "start"]

env {
name = "PORT"
Expand Down Expand Up @@ -113,7 +112,8 @@ resource "kubernetes_deployment_v1" "operator" {
toleration {
effect = "NoSchedule"
key = "demeter.run/compute-arch"
operator = "Exists"
operator = "Equal"
value = "x86"
}

toleration {
Expand Down

0 comments on commit 9ce472d

Please sign in to comment.