All Projects → jshimko → kube-tools-aws

jshimko / kube-tools-aws

Licence: other
A lightweight Docker image with various CLI tooling for working with Kubernetes.

Programming Languages

Dockerfile
14818 projects
shell
77523 projects

Projects that are alternatives of or similar to kube-tools-aws

Helmfiles
Comprehensive Distribution of Helmfiles for Kubernetes
Stars: ✭ 205 (+688.46%)
Mutual labels:  helm, helm-charts
ship-it
Wattpad's tool for continuously deploying code to Kubernetes quickly, safely, and observably.
Stars: ✭ 14 (-46.15%)
Mutual labels:  helm, helm-charts
Build Harness
🤖Collection of Makefiles to facilitate building Golang projects, Dockerfiles, Helm charts, and more
Stars: ✭ 236 (+807.69%)
Mutual labels:  helm, helm-charts
Aws Ssm
Populates Kubernetes Secrets from AWS Parameter Store
Stars: ✭ 150 (+476.92%)
Mutual labels:  helm, helm-charts
matrix-chart
Helm chart for deploying a Matrix homeserver stack
Stars: ✭ 83 (+219.23%)
Mutual labels:  helm, helm-charts
Helm Mapkubeapis
This is a Helm plugin which map deprecated or removed Kubernetes APIs in a release to supported APIs
Stars: ✭ 157 (+503.85%)
Mutual labels:  helm, helm-charts
helm-charts
Source & Repo of https://charts.kubesphere.io/main & https://charts.kubesphere.io/test
Stars: ✭ 85 (+226.92%)
Mutual labels:  helm, helm-charts
Helm Elasticsearch
An Elasticsearch cluster on top of Kubernetes, made easier, with Helm.
Stars: ✭ 124 (+376.92%)
Mutual labels:  helm, helm-charts
clearml-server-helm
ClearML Server for Kubernetes Clusters Using Helm
Stars: ✭ 18 (-30.77%)
Mutual labels:  helm, helm-charts
charts
Deploy Kubernetes Helm Charts for Check Point CloudGuard
Stars: ✭ 18 (-30.77%)
Mutual labels:  helm, helm-charts
Charts
JFrog official Helm Charts
Stars: ✭ 148 (+469.23%)
Mutual labels:  helm, helm-charts
helm-charts
OpenSourced Helm charts
Stars: ✭ 38 (+46.15%)
Mutual labels:  helm, helm-charts
Captain
A Helm 3 Controller
Stars: ✭ 129 (+396.15%)
Mutual labels:  helm, helm-charts
Helm Secrets
Successor of zendesk/helm-secrets - A helm plugin that help manage secrets with Git workflow and store them anywhere
Stars: ✭ 165 (+534.62%)
Mutual labels:  helm, helm-charts
K8s
Kubernetes Helm Charts for the ORY ecosystem.
Stars: ✭ 127 (+388.46%)
Mutual labels:  helm, helm-charts
charts
Helm charts for using F5 products and services in Kubernetes and OpenShift environments.
Stars: ✭ 28 (+7.69%)
Mutual labels:  helm, helm-charts
Unfork
Kubectl plugin to find forked Helm Charts and other K8s resources and unfork them with Kustomize
Stars: ✭ 106 (+307.69%)
Mutual labels:  helm, helm-charts
Helm Chart
A store of Helm chart tarballs for deploying JupyterHub and BinderHub on a Kubernetes cluster
Stars: ✭ 123 (+373.08%)
Mutual labels:  helm, helm-charts
helm-certgen
Helm plugin for generation of TLS certificates
Stars: ✭ 15 (-42.31%)
Mutual labels:  helm, helm-charts
camunda-helm
Camunda public Kubernetes Helm repo and charts
Stars: ✭ 33 (+26.92%)
Mutual labels:  helm, helm-charts

kube-tools

A lightweight Docker image (based on Alpine) that comes with all the tools you need to work with Kubernetes, Helm charts, AWS (awscli), AWS EKS, and Digital Ocean Kubernetes. Intended to be a flexible foundation of tools for CI/CD workflows.

Included Tools

Example Usage

# start up an image
docker run -it \
  -e AWS_ACCESS_KEY_ID="<AWS key>" \
  -e AWS_SECRET_ACCESS_KEY="<AWS secret>" \
  -e AWS_DEFAULT_REGION="us-east-1" \
  jshimko/kube-tools-aws:latest

# the above command drops into a bash shell with
# all of the tooling for the following commands...

# configure kubectl auth for an existing EKS cluster named "my-cluster"
aws eks update-kubeconfig --name my-cluster

# confirm it worked by listing your pods
kubectl get pods --all-namespaces

# or list your helm deployments
helm ls --all-namespaces

# now do stuff for your CI/CD process...
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].