evicted Pod

evicted PodapiVersion:v1kind:Podmetadata:annotations:checksum/config:8476fd6406a3cc87e5471154d85fd7c50e6a629acda16989a09a5d90937bb5b0cni.projectcalico.org/podIP:192.168.1.233/32creationTimestamp:”2019-09-22T06:26:34Z”generateName:test-ap…

大家好,又见面了,我是你们的朋友全栈君。

apiVersion: v1
kind: Pod
metadata:
  annotations:
    checksum/config: 8476fd6406a3cc87e5471154d85fd7c50e6a629acda16989a09a5d90937bb5b0
    cni.projectcalico.org/podIP: 192.168.1.233/32
  creationTimestamp: "2019-09-22T06:26:34Z"
  generateName: test-myapi-ingress-myapi-ingress-controller-84484c48cb-
  labels:
    app.kubernetes.io/instance: test-myapi-ingress
    app.kubernetes.io/name: myapi-ingress-controller
    pod-template-hash: 84484c48cb
  name: test-myapi-ingress-myapi-ingress-controller-84484c48cb-8fxzh
  namespace: default
  ownerReferences:
  - apiVersion: apps/v1
    blockOwnerDeletion: true
    controller: true
    kind: ReplicaSet
    name: test-myapi-ingress-myapi-ingress-controller-84484c48cb
    uid: 4647f2fb-1b53-11ec-9510-0646080049a1
  resourceVersion: "186692899"
  selfLink: /api/v1/namespaces/default/pods/test-myapi-ingress-myapi-ingress-controller-84484c48cb-8fxzh
  uid: 08b02b3d-1b6e-11ec-9510-0646080049a1
spec:
  containers:
  - command:
    - /ingress-myapi/myapi-ingress-controller
    - ingress
    - --config-path
    - /ingress-myapi/conf/config.yaml
    env:
    - name: POD_NAMESPACE
      valueFrom:
        fieldRef:
          apiVersion: v1
          fieldPath: metadata.namespace
    - name: POD_NAME
      valueFrom:
        fieldRef:
          apiVersion: v1
          fieldPath: metadata.name
    image: hub.yun.ali.com.cn/test-myapi/myapi-ingress-controller:1.2.0
    imagePullPolicy: IfNotPresent
    livenessProbe:
      failureThreshold: 3
      httpGet:
        path: /healthz
        port: 8080
        scheme: HTTP
      periodSeconds: 10
      successThreshold: 1
      timeoutSeconds: 1
    name: myapi-ingress-controller
    ports:
    - containerPort: 8080
      name: http
      protocol: TCP
    readinessProbe:
      failureThreshold: 3
      httpGet:
        path: /healthz
        port: 8080
        scheme: HTTP
      periodSeconds: 10
      successThreshold: 1
      timeoutSeconds: 1
    resources: {}
    terminationMessagePath: /dev/termination-log
    terminationMessagePolicy: File
    volumeMounts:
    - mountPath: /ingress-myapi/conf
      name: configuration
    - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
      name: test-myapi-ingress-myapi-ingress-controller-token-wqm56
      readOnly: true
  dnsPolicy: ClusterFirst
  enableServiceLinks: true
  imagePullSecrets:
  - name: default
  nodeName: 192.168.17.41
  priority: 0
  restartPolicy: Always
  schedulerName: default-scheduler
  securityContext: {}
  serviceAccount: test-myapi-ingress-myapi-ingress-controller
  serviceAccountName: test-myapi-ingress-myapi-ingress-controller
  terminationGracePeriodSeconds: 30
  tolerations:
  - effect: NoExecute
    key: node.kubernetes.io/not-ready
    operator: Exists
    tolerationSeconds: 300
  - effect: NoExecute
    key: node.kubernetes.io/unreachable
    operator: Exists
    tolerationSeconds: 300
  volumes:
  - configMap:
      defaultMode: 420
      items:
      - key: config.yaml
        path: config.yaml
      name: test-myapi-ingress-configmap
    name: configuration
  - name: test-myapi-ingress-myapi-ingress-controller-token-wqm56
    secret:
      defaultMode: 420
      secretName: test-myapi-ingress-myapi-ingress-controller-token-wqm56
status:
  message: 'The node was low on resource: ephemeral-storage. Container myapi-ingress-controller
    was using 10727084Ki, which exceeds its request of 0. '
  phase: Failed
  reason: Evicted
  startTime: "2019-09-22T06:26:35Z"

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/145241.html原文链接:https://javaforall.net

(0)
上一篇 2022年5月13日 上午7:20
下一篇 2022年5月13日 上午7:20


相关推荐

  • c语言将时速转换成配速,配速和时速换算(配速时速换算)

    c语言将时速转换成配速,配速和时速换算(配速时速换算)时间除以路程,一般时间单位用分,路程单位用千米。比如20分钟跑了3千米,那配速就是20/3=6.66,也就是6分40秒每公里,一般说成640的配速。配速是针对长跑来说的,对短跑和中跑是不采用这个概念的。马拉松运动讲究匀速,在匀速的状态下才能更好地发挥自己的实力。很多跑步爱好者很注意控制速度。他们根.时速的意思是当时跑步的速度,配速是平均每公里耗时几分钟消耗是指跑步消耗的热量相当于每小时跑多少千…

    2022年6月28日
    174
  • Pytorch 转置卷积

    Pytorch 转置卷积环境使用Kaggle里免费建立的Notebook教程使用李沐老师的动手学深度学习网站和视频讲解小技巧:当遇到函数看不懂的时候可以按查看函数详解。卷积不会增大输入的高和宽,通常要么不变,要么减半。而转置卷积则可以用来增大输入高宽。假设忽略通道,步幅为1且填充为0。输入张量形状为nh×nwn_h\timesn_wnh​×nw​,卷积核形状为kh×kwk_h\timesk_wkh​×kw​。共产生nhnwn_hn_wnh​nw​个中间结果。每个中间结果都是一个(nh+k

    2022年6月21日
    29
  • linux添加静态路由命令_linux route add永久路由

    linux添加静态路由命令_linux route add永久路由linux下静态路由修改命令方法一:添加路由routeadd-net192.168.0.0/24gw192.168.0.1routeadd-host192.168.1.1dev192.168.0.1删除路由routedel-net192.168.0.0/24gw192.168.0.1add增加路由del删除路由-net设置到某…

    2022年10月4日
    7
  • 华为ac配置radius认证服务器_华为ac配置radius认证服务器_华为思科设备RADIUS配置教程…

    华为ac配置radius认证服务器_华为ac配置radius认证服务器_华为思科设备RADIUS配置教程…1 RADIUS 配置 RADIUS 客户端配置 思科设备例子 交换机和路由器的配置 aaanew modelaaaauth 配置登陆认证的优先级 radius serverhost13 123 252 245auth port1812acct port1813 配置 RADIUS 服务器 IP 地址和端口

    2026年3月18日
    2
  • 如何使用Midjourney

    如何使用Midjourney

    2026年3月15日
    2
  • WIN2016安装织梦没写入权限怎么办听语音

    WIN2016安装织梦没写入权限怎么办听语音

    2021年9月22日
    50

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号