Skip to content

Commit

Permalink
kubeone: add v1.8.0
Browse files Browse the repository at this point in the history
Closes #14.

Signed-off-by: Marvin Beckers <mail@embik.me>
Signed-off-by: Marvin Beckers <10295525+embik@users.noreply.github.com>
  • Loading branch information
embik committed May 17, 2024
1 parent 558c5cd commit 622185a
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions Formula/kubeone.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
class Kubeone < Formula
desc "Automates Kubernetes cluster operations on any cloud or edge infrastructure"
homepage "https://docs.kubermatic.com/kubeone/v1.8"
url "https://github.com/kubermatic/kubeone/archive/refs/tags/v1.8.0.tar.gz"
sha256 "d4279f0f49fee6db6e9ce8d88cf19d5411b69ad85f4ff4ac514b31a676a1c311"
license "Apache-2.0"

head "https://github.com/kubermatic/kubeone.git", branch: "main"

depends_on "go" => :build
depends_on "opentofu" => :optional
depends_on "terraform" => :optional

def install
ENV["CGO_ENABLED"] = "0"
ldflags = %W[
-s -w
-X k8c.io/kubeone/pkg/cmd.defaultKubeVersion=v1.29.5
-X k8c.io/kubeone/pkg/cmd.version=v#{version}
-X k8c.io/kubeone/pkg/cmd.date=#{time.iso8601}
]

system "go", "build", *std_go_args(ldflags:), "."
generate_completions_from_executable(bin/"kubeone", "completion", shells: [:bash, :zsh])
end

test do
system "#{bin}/kubeone", "--help"
end
end

0 comments on commit 622185a

Please sign in to comment.