1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
| daizc@KAILIN-DAIZC:/mnt/d/deployment$ kubectl describe statefulsets.apps idea-u-daizc Name: idea-u-daizc Namespace: default CreationTimestamp: Thu, 02 Jun 2022 12:59:00 +0800 Selector: app.kubernetes.io/name=idea-u-daizc Labels: app.kubernetes.io/name=idea-u-daizc Annotations: <none> Replicas: 1 desired | 1 total Update Strategy: RollingUpdate Partition: 0 Pods Status: 1 Running / 0 Waiting / 0 Succeeded / 0 Failed Pod Template: Labels: app.kubernetes.io/name=idea-u-daizc Containers: idea-u-daizc: Image: jetbrains/projector-idea-u:2021.3-projector-v1.8.1 Port: 8887/TCP Host Port: 0/TCP Environment: <none> Mounts: /home/projector-user from idea-u-daizc-volume (rw) Volumes: idea-u-daizc-volume: Type: PersistentVolumeClaim (a reference to a PersistentVolumeClaim in the same namespace) ClaimName: idea-u-daizc-pvc ReadOnly: false Volume Claims: <none> Events: <none>
daizc@KAILIN-DAIZC:/mnt/d/deployment$ kubectl get pod idea-u-daizc-0 -oyaml apiVersion: v1 kind: Pod metadata: annotations: cni.projectcalico.org/containerID: bbfe0e4675cece177bd362cd3955995b5b0bc3c4ef55939fbbf845b10fa29505 cni.projectcalico.org/podIP: 10.233.97.107/32 cni.projectcalico.org/podIPs: 10.233.97.107/32 creationTimestamp: "2022-06-02T06:38:10Z" generateName: idea-u-daizc- labels: app.kubernetes.io/name: idea-u-daizc controller-revision-hash: idea-u-daizc-5578c99bf7 statefulset.kubernetes.io/pod-name: idea-u-daizc-0 name: idea-u-daizc-0 namespace: default ownerReferences: - apiVersion: apps/v1 blockOwnerDeletion: true controller: true kind: StatefulSet name: idea-u-daizc uid: 1e13554f-a842-48dc-ab71-f01114c8cb3d resourceVersion: "21106533" selfLink: /api/v1/namespaces/default/pods/idea-u-daizc-0 uid: fa9a121d-278c-477b-bd6c-290401a49840 spec: containers: - image: jetbrains/projector-idea-u:2021.3-projector-v1.8.1 imagePullPolicy: IfNotPresent name: idea-u-daizc ports: - containerPort: 8887 name: http protocol: TCP resources: {} terminationMessagePath: /dev/termination-log terminationMessagePolicy: File volumeMounts: - mountPath: /home/projector-user name: idea-u-daizc-volume - mountPath: /var/run/secrets/kubernetes.io/serviceaccount name: kube-api-access-dtdp9 readOnly: true dnsPolicy: ClusterFirst enableServiceLinks: true hostname: idea-u-daizc-0 nodeName: node9 preemptionPolicy: PreemptLowerPriority priority: 0 restartPolicy: Always schedulerName: default-scheduler securityContext: {} serviceAccount: default serviceAccountName: default subdomain: idea-u-daizc terminationGracePeriodSeconds: 60 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: - name: idea-u-daizc-volume persistentVolumeClaim: claimName: idea-u-daizc-pvc - name: kube-api-access-dtdp9 projected: defaultMode: 420 sources: - serviceAccountToken: expirationSeconds: 3607 path: token - configMap: items: - key: ca.crt path: ca.crt name: kube-root-ca.crt - downwardAPI: items: - fieldRef: apiVersion: v1 fieldPath: metadata.namespace path: namespace status: conditions: - lastProbeTime: null lastTransitionTime: "2022-06-02T06:38:11Z" status: "True" type: Initialized - lastProbeTime: null lastTransitionTime: "2022-06-02T07:04:13Z" status: "True" type: Ready - lastProbeTime: null lastTransitionTime: "2022-06-02T07:04:13Z" status: "True" type: ContainersReady - lastProbeTime: null lastTransitionTime: "2022-06-02T06:38:11Z" status: "True" type: PodScheduled containerStatuses: - containerID: containerd://d98a22a7534a147c240fb44d93d784090979e524e69a6f4195a908ee8f2609a6 image: docker.io/jetbrains/projector-idea-u:2021.3-projector-v1.8.1 imageID: docker.io/jetbrains/projector-idea-u@sha256:fab2a81caa691ecc92faa20c453e8e911b0cd216793a8d97c3dc2dce579b8424 lastState: terminated: containerID: containerd://c88b860653dac1f3e4680fb62fdefcd5fe73e210780078374d985da55b2cfd39 exitCode: 0 finishedAt: "2022-06-02T07:04:11Z" reason: Completed startedAt: "2022-06-02T06:38:12Z" name: idea-u-daizc ready: true restartCount: 1 started: true state: running: startedAt: "2022-06-02T07:04:12Z" hostIP: 192.168.21.89 phase: Running podIP: 10.233.97.107 podIPs: - ip: 10.233.97.107 qosClass: BestEffort startTime: "2022-06-02T06:38:11Z"
|