Class: KubernetesDeploy::KubernetesResource

Inherits:
Object
  • Object
show all
Defined in:
lib/kubernetes-deploy/kubernetes_resource.rb

Defined Under Namespace

Classes: Event

Constant Summary collapse

TIMEOUT =
5.minutes
LOG_LINE_COUNT =
250
DEBUG_RESOURCE_NOT_FOUND_MESSAGE =
"None found. Please check your usual logging service (e.g. Splunk)."
UNUSUAL_FAILURE_MESSAGE =
<<-MSG.strip_heredoc
It is very unusual for this resource type to fail to deploy. Please try the deploy again.
If that new deploy also fails, contact your cluster administrator.
MSG
STANDARD_TIMEOUT_MESSAGE =
<<-MSG.strip_heredoc
Kubernetes will continue to attempt to deploy this resource in the cluster, but at this point it is considered unlikely that it will succeed.
If you have reason to believe it will succeed, retry the deploy to continue to monitor the rollout.
MSG

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(namespace:, context:, definition:, logger:) ⇒ KubernetesResource

Returns a new instance of KubernetesResource.



45
46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/kubernetes-deploy/kubernetes_resource.rb', line 45

def initialize(namespace:, context:, definition:, logger:)
  # subclasses must also set these if they define their own initializer
  @name = definition.fetch("metadata", {})["name"]
  unless @name.present?
    logger.summary.add_paragraph("Rendered template content:\n#{definition.to_yaml}")
    raise FatalDeploymentError, "Template is missing required field metadata.name"
  end

  @namespace = namespace
  @context = context
  @logger = logger
  @definition = definition
end

Instance Attribute Details

#contextObject (readonly)

Returns the value of attribute context.



9
10
11
# File 'lib/kubernetes-deploy/kubernetes_resource.rb', line 9

def context
  @context
end

#deploy_started=(value) ⇒ Object (writeonly)

Sets the attribute deploy_started

Parameters:

  • value

    the value to set the attribute deploy_started to.



10
11
12
# File 'lib/kubernetes-deploy/kubernetes_resource.rb', line 10

def deploy_started=(value)
  @deploy_started = value
end

#nameObject (readonly)

Returns the value of attribute name.



9
10
11
# File 'lib/kubernetes-deploy/kubernetes_resource.rb', line 9

def name
  @name
end

#namespaceObject (readonly)

Returns the value of attribute namespace.



9
10
11
# File 'lib/kubernetes-deploy/kubernetes_resource.rb', line 9

def namespace
  @namespace
end

#typeObject



90
91
92
# File 'lib/kubernetes-deploy/kubernetes_resource.rb', line 90

def type
  @type || self.class.name.split('::').last
end

Class Method Details

.build(namespace:, context:, definition:, logger:) ⇒ Object



25
26
27
28
29
30
31
32
33
34
35
# File 'lib/kubernetes-deploy/kubernetes_resource.rb', line 25

def self.build(namespace:, context:, definition:, logger:)
  opts = { namespace: namespace, context: context, definition: definition, logger: logger }
  if KubernetesDeploy.const_defined?(definition["kind"])
    klass = KubernetesDeploy.const_get(definition["kind"])
    klass.new(**opts)
  else
    inst = new(**opts)
    inst.type = definition["kind"]
    inst
  end
end

.timeoutObject



37
38
39
# File 'lib/kubernetes-deploy/kubernetes_resource.rb', line 37

def self.timeout
  self::TIMEOUT
end

Instance Method Details

#debug_messageObject



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
# File 'lib/kubernetes-deploy/kubernetes_resource.rb', line 113

def debug_message
  helpful_info = []
  if deploy_failed?
    helpful_info << ColorizedString.new("#{id}: FAILED").red
    helpful_info << failure_message if failure_message.present?
  else
    helpful_info << ColorizedString.new("#{id}: TIMED OUT").yellow + " (limit: #{timeout}s)"
    helpful_info << timeout_message if timeout_message.present?
  end
  helpful_info << "  - Final status: #{status}"

  events = fetch_events
  if events.present?
    helpful_info << "  - Events:"
    events.each do |identifier, event_hashes|
      event_hashes.each { |event| helpful_info << "      [#{identifier}]\t#{event}" }
    end
  else
    helpful_info << "  - Events: #{DEBUG_RESOURCE_NOT_FOUND_MESSAGE}"
  end

  if respond_to?(:fetch_logs)
    container_logs = fetch_logs
    if container_logs.blank? || container_logs.values.all?(&:blank?)
      helpful_info << "  - Logs: #{DEBUG_RESOURCE_NOT_FOUND_MESSAGE}"
    else
      sorted_logs = container_logs.sort_by { |_, log_lines| log_lines.length }
      sorted_logs.each do |identifier, log_lines|
        helpful_info << "  - Logs from container '#{identifier}' (last #{LOG_LINE_COUNT} lines shown):"
        log_lines.each do |line|
          helpful_info << "      #{line}"
        end
      end
    end
  end

  helpful_info.join("\n")
end

#deploy_failed?Boolean

Returns:

  • (Boolean)


70
71
72
# File 'lib/kubernetes-deploy/kubernetes_resource.rb', line 70

def deploy_failed?
  false
end

#deploy_finished?Boolean

Returns:

  • (Boolean)


94
95
96
# File 'lib/kubernetes-deploy/kubernetes_resource.rb', line 94

def deploy_finished?
  deploy_failed? || deploy_succeeded? || deploy_timed_out?
end

#deploy_methodObject

Expected values: :apply, :replace, :replace_force



108
109
110
111
# File 'lib/kubernetes-deploy/kubernetes_resource.rb', line 108

def deploy_method
  # TPRs must use update for now: https://github.com/kubernetes/kubernetes/issues/39906
  tpr? ? :replace : :apply
end

#deploy_succeeded?Boolean

Returns:

  • (Boolean)


74
75
76
77
78
79
80
# File 'lib/kubernetes-deploy/kubernetes_resource.rb', line 74

def deploy_succeeded?
  if @deploy_started && !@success_assumption_warning_shown
    @logger.warn("Don't know how to monitor resources of type #{type}. Assuming #{id} deployed successfully.")
    @success_assumption_warning_shown = true
  end
  true
end

#deploy_timed_out?Boolean

Returns:

  • (Boolean)


98
99
100
101
# File 'lib/kubernetes-deploy/kubernetes_resource.rb', line 98

def deploy_timed_out?
  return false unless @deploy_started
  !deploy_succeeded? && !deploy_failed? && (Time.now.utc - @deploy_started > timeout)
end

#exists?Boolean

Returns:

  • (Boolean)


82
83
84
# File 'lib/kubernetes-deploy/kubernetes_resource.rb', line 82

def exists?
  nil
end

#failure_messageObject



174
175
# File 'lib/kubernetes-deploy/kubernetes_resource.rb', line 174

def failure_message
end

#fetch_eventsObject

Returns a hash in the following format:

"pod/web-1" => [
  "Pulling: pulling image "hello-world:latest" (1 events)",
  "Pulled: Successfully pulled image "hello-world:latest" (1 events)"
]



159
160
161
162
163
164
165
166
167
168
# File 'lib/kubernetes-deploy/kubernetes_resource.rb', line 159

def fetch_events
  return {} unless exists?
  out, _err, st = kubectl.run("get", "events", "--output=go-template=#{Event.go_template_for(type, name)}")
  return {} unless st.success?

  event_collector = Hash.new { |hash, key| hash[key] = [] }
  Event.extract_all_from_go_template_blob(out).each_with_object(event_collector) do |candidate, events|
    events[id] << candidate.to_s if candidate.seen_since?(@deploy_started - 5.seconds)
  end
end

#file_pathObject



63
64
65
# File 'lib/kubernetes-deploy/kubernetes_resource.rb', line 63

def file_path
  file.path
end

#idObject



59
60
61
# File 'lib/kubernetes-deploy/kubernetes_resource.rb', line 59

def id
  "#{type}/#{name}"
end

#kubectlObject



183
184
185
# File 'lib/kubernetes-deploy/kubernetes_resource.rb', line 183

def kubectl
  @kubectl ||= Kubectl.new(namespace: @namespace, context: @context, logger: @logger, log_failure_by_default: false)
end

#pretty_statusObject



177
178
179
180
181
# File 'lib/kubernetes-deploy/kubernetes_resource.rb', line 177

def pretty_status
  padding = " " * [50 - id.length, 1].max
  msg = exists? ? status : "not found"
  "#{id}#{padding}#{msg}"
end

#statusObject



86
87
88
# File 'lib/kubernetes-deploy/kubernetes_resource.rb', line 86

def status
  @status ||= "Unknown"
end

#syncObject



67
68
# File 'lib/kubernetes-deploy/kubernetes_resource.rb', line 67

def sync
end

#timeoutObject



41
42
43
# File 'lib/kubernetes-deploy/kubernetes_resource.rb', line 41

def timeout
  self.class.timeout
end

#timeout_messageObject



170
171
172
# File 'lib/kubernetes-deploy/kubernetes_resource.rb', line 170

def timeout_message
  STANDARD_TIMEOUT_MESSAGE
end

#tpr?Boolean

Returns:

  • (Boolean)


103
104
105
# File 'lib/kubernetes-deploy/kubernetes_resource.rb', line 103

def tpr?
  false
end