class KubeDeployTools::StrictHash

Public Class Methods

new(h) click to toggle source
# File lib/kube_deploy_tools/templater.rb, line 46
def initialize(h)
  @h = h
end

Public Instance Methods

[](k) click to toggle source
# File lib/kube_deploy_tools/templater.rb, line 50
def [](k)
  @h.fetch(k)
end
extra_flag(k) click to toggle source
# File lib/kube_deploy_tools/templater.rb, line 58
def extra_flag(k)
  @h[k]
end
fetch(*args) click to toggle source
# File lib/kube_deploy_tools/templater.rb, line 54
def fetch(*args)
  @h.fetch(*args)
end