如何通过 gitlab CI 部署 Stale Pod(我的意思是无法运行)?

How to deploy Stale Pod (I mean non operational) through gitlab CI?

我想部署一个应用程序,并且 pod 不应进入 运行 状态(它应该是不可操作的)。当确实需要使用基础架构即代码 (Terraform) 时,用户可能会触发此操作。我知道使用 kubectl scale -- replicas=0 。任何其他线索或信息将不胜感激。

您可以将 DeploymentPOD 的副本数保持在 YAML 文件,如果你正在使用它。

或者如果您使用的是 Terraform

resource "kubernetes_deployment" "example" {
  metadata {
    name = "terraform-example"
    labels = {
      test = "MyExampleApp"
    }
  }

  spec {
    replicas = 0

    selector {
      match_labels = {
        test = "MyExampleApp"
      }
    }

    template {
      metadata {
        labels = {
          test = "MyExampleApp"
        }
      }

      spec {
        container {
          image = "nginx:1.7.8"
          name  = "example"

          resources {
            limits = {
              cpu    = "0.5"
              memory = "512Mi"
            }
            requests = {
              cpu    = "250m"
              memory = "50Mi"
            }
          }

          liveness_probe {
            http_get {
              path = "/nginx_status"
              port = 80

              http_header {
                name  = "X-Custom-Header"
                value = "Awesome"
              }
            }

            initial_delay_seconds = 3
            period_seconds        = 3
          }
        }
      }
    }
  }
}

如果不想使用 Terraform,没有其他方法可以使用 Kubernetes 的 client 来做到这一点。

如果您想使用 terraform checkout 编辑本地文件 local-exec

This invokes a process on the machine running Terraform, not on the resource.

resource "aws_instance" "web" {
  # ...

  provisioner "local-exec" {
    command = "echo ${self.private_ip} >> private_ips.txt"
  }
}

local-exec 中使用 sed 命令或您可以更新 YAML 并应用它的任何其他命令。

https://www.terraform.io/docs/language/resources/provisioners/local-exec.html