All Projects → viglesiasce → gke-toolbox

viglesiasce / gke-toolbox

Licence: Apache-2.0 license
A Helm Chart with pre-configured tools for your Container Engine clusters

Programming Languages

Smarty
1635 projects

Projects that are alternatives of or similar to gke-toolbox

falcon-helm
Helm Charts for running CrowdStrike Falcon with Kubernetes
Stars: ✭ 34 (+70%)
Mutual labels:  chart, helm, container
charts
My helm charts
Stars: ✭ 15 (-25%)
Mutual labels:  chart, helm
towards5gs-helm
Open-source project providing Helm charts for deploying Free5GC and UERANSIM on a Kubernetes cluster
Stars: ✭ 53 (+165%)
Mutual labels:  chart, helm
Helm
The Kubernetes Package Manager
Stars: ✭ 20,846 (+104130%)
Mutual labels:  chart, helm
helm-charts
Helm Charts
Stars: ✭ 24 (+20%)
Mutual labels:  chart, helm
aks-terraform-helm
Showcase for Azure, AKS, Terraform, Helm and Let's Encrypt
Stars: ✭ 23 (+15%)
Mutual labels:  chart, helm
Helmfile
Helmfile is a declarative spec for deploying helm charts. It lets you...
Stars: ✭ 3,596 (+17880%)
Mutual labels:  chart, helm
onechart
A generic Helm chart for your application deployments
Stars: ✭ 30 (+50%)
Mutual labels:  chart, helm
Monocular
⚠️(OBSOLETE) Search and discovery UI for Helm Chart repositories
Stars: ✭ 1,457 (+7185%)
Mutual labels:  chart, helm
Android Farm
Android devices farm with USB and emulated devices support
Stars: ✭ 117 (+485%)
Mutual labels:  chart, helm
Helm App Operator Kit
Tool for creating a Kubernetes Operator from a Helm Chart
Stars: ✭ 132 (+560%)
Mutual labels:  chart, helm
helm-postgresql
Helm Chart for postgresql
Stars: ✭ 35 (+75%)
Mutual labels:  chart, helm
charts
HAProxy Ingress helm charts
Stars: ✭ 24 (+20%)
Mutual labels:  chart, helm
helm-charts
docs.renovatebot.com/helm-charts
Stars: ✭ 51 (+155%)
Mutual labels:  chart, helm
charts
☸️ Helm Charts for YOURLS
Stars: ✭ 12 (-40%)
Mutual labels:  chart, helm
acceptance-testing
Acceptance test suite for the Helm client
Stars: ✭ 22 (+10%)
Mutual labels:  chart, helm
Helm Gcs
Manage Helm 3 repositories on Google Cloud Storage 🔐 **privately**
Stars: ✭ 202 (+910%)
Mutual labels:  chart, helm
helm-spray
Helm plugin for installing or upgrading sub-charts from an umbrella-chart using dependency orders
Stars: ✭ 64 (+220%)
Mutual labels:  chart, helm
Helm 2to3
This is a Helm v3 plugin which migrates and cleans up Helm v2 configuration and releases in-place to Helm v3
Stars: ✭ 431 (+2055%)
Mutual labels:  chart, helm
K8s Wait For
A simple script that allows to wait for a k8s service, job or pods to enter a desired state
Stars: ✭ 172 (+760%)
Mutual labels:  chart, helm

GKE Toolbox

Introduction

The GKE Toolbox is a Helm chart that installs and configures useful tools into your Container Engine Clusters

Tools

Enabled by Default

  • Prometheus (chart) -> Kubernetes native monitoring and alerting of your nodes, pods, services, and controller states
  • Grafana (chart) -> Flexible Dashboards for Kubernetes
  • Nginx Ingress (chart) -> Allows you to use Nginx as an ingress controller which can be more flexible than the Google HTTP(S) load balancer

Disabled by Default

  • Kube Lego (chart) -> Automatically get TLS certificates for your ingresses
  • External DNS -> Map your service and ingress IPs to DNS records in Cloud DNS
  • Istio (chart) -> Kubernetes native service mesh
  • Spinnaker (chart) -> Continuous Delivery solution for Kubernetes workloads
  • Gitlab (chart) -> Source code management and continuous integration/delivery system

Prerequisites

  1. Credentials to a Container Engine cluster with at least 3 cores and 8GB or RAM
  2. For external-dns, a cluster with the following scope enabled at creation: https://www.googleapis.com/auth/ndev.clouddns.readwrite
  3. For Istio tracing to work you must have the following scope enabled: https://www.googleapis.com/auth/trace.append

For example:

$ gcloud container clusters create tb-test --scopes https://www.googleapis.com/auth/ndev.clouddns.readwrite,https://www.
googleapis.com/auth/trace.append

Getting Started

  1. Clone this repository

     git clone https://github.com/viglesiasce/gke-toolbox
    
  2. Change directories to the repo

     cd gke-toolbox
    
  3. Install Helm

  4. Initialize Helm

     helm init
    
  5. Add repositories that we depend on:

     helm repo add gke-tb.incubator https://kubernetes-charts-incubator.storage.googleapis.com/
     helm repo add coreos https://s3-eu-west-1.amazonaws.com/coreos-charts/stable/
    
  6. Download dependent charts

     helm dep build
    
  7. Install the chart:

     helm install -n toolbox .
    
  8. To complete the configuration and installation of Istio and Prometheus, run:

     helm upgrade toolbox . --reuse-values --set istio.istio.install=true --set prometheus.enabled=true
    
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].