AKS 超时容器 kubectl 转出状态检查失败

问题描述 投票:0回答:1

我有一个偶发问题,我很难理解 - 由于 kubectl 推出状态部署/名称 --timeout 120s --namespace xyz,Azure 管道升级失败

我尝试增加progressDeadlineSeconds,但我知道这可能不需要,我尝试将replicaSets更新为2,这样它就可以使用,但它仍然不适用。我不完全理解这个错误,并且存在推出问题。

Yaml 文件

---
apiVersion: apps/v1
kind: Deployment
metadata:
  name: #{KubeComponentName}#
  namespace: #{Namespace}#
spec:
  selector:
    matchLabels:
      app: #{KubeComponentName}#
  progressDeadlineSeconds: 600
  replicas: #{ReplicaCount}#
  template:
    metadata:
      labels:
        app: #{KubeComponentName}#
      annotations:
    spec:
      securityContext:
        runAsUser: 999
      serviceAccountName: #{KubeComponentName}#
      containers:
      - name: #{KubeComponentName}#
        image: #{ImageRegistry}#/datahub/#{KubeComponentName}#:latest
        #command: ["/bin/bash", "-c", "--"]
        #args: [ "while true; do sleep 30; done;" ]
        volumeMounts:
        ports:
        env:
        - name: NodeName
          valueFrom:
            fieldRef:
              fieldPath: spec.nodeName
        - name: PodName
          valueFrom:
            fieldRef:
              fieldPath: metadata.name   
        - name: PodNamespace
          valueFrom:
            fieldRef:
              fieldPath: metadata.namespace
        - name: PodIp
          valueFrom:
            fieldRef:
              fieldPath: status.podIP
        - name: PodServiceAccount
          valueFrom:
            fieldRef:
              fieldPath: spec.serviceAccountName
        - name: ComponentInfo__ComponentName
          value: #{KubeComponentName}#
        - name: ComponentInfo__ComponentHost
          valueFrom:
            fieldRef:
              fieldPath: spec.nodeName              
        - name: ComponentInfo__ServiceUser
          valueFrom:
            fieldRef:
              fieldPath: spec.serviceAccountName  
        - name: MongoDbUserName
          valueFrom:
            secretKeyRef:
              name: mongodb-xyz-username
              key: secret-value
        - name: MongoDbPassword
          valueFrom:
            secretKeyRef:
              name: mongodb-xyz-password
              key: secret-value
        - name: MongoDbKubernetesHosts
          value: #{MongoDbKubernetesHosts}#
        - name: MongoDbScriptBasePath
          value: #{MongoDbScriptBasePath}#
      volumes:

我的错误不断发生,导致我在等待推出时遇到超时错误或超出进度截止日期

----

/opt/vsts-agent/_work/_tool/kubectl/1.18.6/x64/kubectl rollout status Deployment/datahub-recon --timeout 120s --namespace xyz
Waiting for deployment "datahub-recon" rollout to finish: 0 of 1 updated replicas are available...
error: timed out waiting for the condition
##[error]Error: error: timed out waiting for the condition
/opt/vsts-agent/_work/_tool/kubectl/1.18.6/x64/kubectl describe Deployment datahub-recon --namespace xyz


Conditions:
  Type           Status  Reason
  ----           ------  ------
  Available      False   MinimumReplicasUnavailable
  Progressing    True    ReplicaSetUpdated
OldReplicaSets:  <none>
NewReplicaSet:   datahub-recon-567c7d6958 (1/1 replicas created)
Events:
  Type    Reason             Age   From                   Message
  ----    ------             ----  ----                   -------
  Normal  ScalingReplicaSet  2m1s  deployment-controller  Scaled up replica set datahub-recon-567c7d6958 to 1
For more information, go to https://dev.azure.com/pbc/Premera/_environments/23
##[error]Rollout status check failed.


----
/opt/vsts-agent/_work/_tool/kubectl/1.18.6/x64/kubectl rollout status Deployment/datahub-recon --timeout 120s --namespace xyz
error: deployment "datahub-recon" exceeded its progress deadline
##[error]Error: error: deployment "datahub-recon" exceeded its progress deadline
/opt/vsts-agent/_work/_tool/kubectl/1.18.6/x64/kubectl describe Deployment datahub-recon --namespace xyz

Conditions:
  Type           Status  Reason
  ----           ------  ------
  Available      True    MinimumReplicasAvailable
  Progressing    False   ProgressDeadlineExceeded
OldReplicaSets:  datahub-recon-6bc6f85fc6 (2/2 replicas created)
NewReplicaSet:   datahub-recon-bd7d9754 (1/1 replicas created)
Events:
  Type    Reason             Age   From                   Message
  ----    ------             ----  ----                   -------
  Normal  ScalingReplicaSet  13m   deployment-controller  Scaled up replica set datahub-recon-bd7d9754 to 1
For more information, go to https://dev.azure.com/pbc/Premera/_environments/23
##[error]Rollout status check failed.


azure docker azure-devops kubectl
1个回答
0
投票

我能够解决我的问题

检查你的

1-- 转到您的发布管道 --> 单击编辑并选择 --> 部署到 AKS 2-- 检查任务 --> 重新检查所有变量。

就我而言,我更正了不正确的容器名称,并解决了问题。

检查您的代码,查看 yaml 文件并确保发布管道中的变量相同。

© www.soinside.com 2019 - 2024. All rights reserved.