Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pods_page.vue « pages « kubernetes_dashboard « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9cd759f335ae98733dcef81cf5f52ae1d9077a21 (plain)
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
<script>
import { getAge } from '../helpers/k8s_integration_helper';
import WorkloadLayout from '../components/workload_layout.vue';
import k8sPodsQuery from '../graphql/queries/k8s_dashboard_pods.query.graphql';
import {
  PHASE_RUNNING,
  PHASE_PENDING,
  PHASE_SUCCEEDED,
  PHASE_FAILED,
  STATUS_LABELS,
} from '../constants';

export default {
  components: {
    WorkloadLayout,
  },
  inject: ['configuration'],
  apollo: {
    k8sPods: {
      query: k8sPodsQuery,
      variables() {
        return {
          configuration: this.configuration,
        };
      },
      update(data) {
        return (
          data?.k8sPods?.map((pod) => {
            return {
              name: pod.metadata?.name,
              namespace: pod.metadata?.namespace,
              status: pod.status.phase,
              age: getAge(pod.metadata?.creationTimestamp),
            };
          }) || []
        );
      },
      error(err) {
        this.errorMessage = err?.message;
      },
    },
  },
  data() {
    return {
      k8sPods: [],
      errorMessage: '',
    };
  },
  computed: {
    podStats() {
      return [
        {
          value: this.countPodsByPhase(PHASE_RUNNING),
          title: STATUS_LABELS[PHASE_RUNNING],
        },
        {
          value: this.countPodsByPhase(PHASE_PENDING),
          title: STATUS_LABELS[PHASE_PENDING],
        },
        {
          value: this.countPodsByPhase(PHASE_SUCCEEDED),
          title: STATUS_LABELS[PHASE_SUCCEEDED],
        },
        {
          value: this.countPodsByPhase(PHASE_FAILED),
          title: STATUS_LABELS[PHASE_FAILED],
        },
      ];
    },
    loading() {
      return this.$apollo?.queries?.k8sPods?.loading;
    },
  },
  methods: {
    countPodsByPhase(phase) {
      const filteredPods = this.k8sPods?.filter((item) => item.status === phase) || [];

      return filteredPods.length;
    },
  },
};
</script>
<template>
  <workload-layout
    :loading="loading"
    :error-message="errorMessage"
    :stats="podStats"
    :items="k8sPods"
  />
</template>