summaryrefslogtreecommitdiff
path: root/lib/gitlab/kubernetes/pod.rb
blob: a5651f2f1843559bd49c2a071de5a902914601fc (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
# frozen_string_literal: true

module Gitlab
  module Kubernetes
    class Pod
      PENDING   = 'Pending'
      RUNNING   = 'Running'
      SUCCEEDED = 'Succeeded'
      FAILED    = 'Failed'
      UNKNOWN   = 'Unknown'
      PHASES    = [PENDING, RUNNING, SUCCEEDED, FAILED, UNKNOWN].freeze

      STABLE_TRACK_VALUE = 'stable'

      def initialize(attributes = {})
        @attributes = attributes
      end

      def track
        attributes.dig('metadata', 'labels', 'track') || STABLE_TRACK_VALUE
      end

      def name
        metadata['name'] || metadata['generateName']
      end

      def stable?
        track == STABLE_TRACK_VALUE
      end

      def status
        attributes.dig('status', 'phase')
      end

      def order
        stable? ? 1 : 0
      end

      private

      attr_reader :attributes

      def metadata
        attributes.fetch('metadata', {})
      end
    end
  end
end