Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature: add kite to k8s-go-tools #57

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions k8s-go-tools/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
FROM golang:1.17-alpine

RUN apk add --no-cache curl make git vim

ARG KAIGARA_VERSION=v1.0.15
RUN curl -Lo /usr/bin/kai https://github.com/openware/kaigara/releases/download/${KAIGARA_VERSION}/kai_linux_amd64 \
&& chmod +x /usr/bin/kai
RUN apk add --no-cache curl make git vim jq yq

ARG KUBECTL_VERSION=v1.24.0
RUN curl -Lo /usr/bin/kubectl https://storage.googleapis.com/kubernetes-release/release/${KUBECTL_VERSION}/bin/linux/amd64/kubectl \
Expand All @@ -13,3 +9,11 @@ RUN curl -Lo /usr/bin/kubectl https://storage.googleapis.com/kubernetes-release/
ARG HELM_VERSION=v3.9.0
RUN curl -L https://get.helm.sh/helm-${HELM_VERSION}-linux-amd64.tar.gz | tar -zxO linux-amd64/helm > /usr/bin/helm \
&& chmod +x /usr/bin/helm

ARG KAIGARA_VERSION=v1.0.17
RUN curl -Lo /usr/bin/kai https://github.com/openware/kaigara/releases/download/${KAIGARA_VERSION}/kai_linux_amd64 \
&& chmod +x /usr/bin/kai

ARG KITE_VERSION=1.2.48
RUN curl -Lo /usr/bin/kite https://storage.googleapis.com/opendax-v4-binaries/kite/kite-${KITE_VERSION} \
&& chmod +x /usr/bin/kite
6 changes: 5 additions & 1 deletion k8s-go-tools/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,15 @@
## Overview

This image contains a basic toolset with common DevOps tools like `kubectl` and `helm` added on top of `golang` base.

Currently it has these additional binaries:
* `curl`
* `make`
* `git`
* `vim`
* [`kai`](https://github.com/openware/kaigara)
* `jq`
* `yq`
* `kubectl`
* `helm`
* [`kai`](https://github.com/openware/kaigara)
* [`kite`](https://github.com/openware/opx)