/kubernetes-initializer-tutorial

Hands-on tutorial for building and deploying Kubernetes Initializers.

Primary LanguageGoApache License 2.0Apache-2.0

Kubernetes Initializer Tutorial SuperDopeBadge

This tutorial walks you through building and deploying a Kubernetes Initializer that injects an Envoy proxy container into uninitialized Deployments.

Initializers are an alpha feature and subject to change. Please report any Initializer specific issues on the Kubernetes issue tracker.

Prerequisites

Kubernetes 1.7.0+ is required with support for Initializers enabled. If you're using Google Container Engine create an alpha cluster:

gcloud alpha container clusters create k0 \
  --enable-kubernetes-alpha \
  --cluster-version 1.7.0

Download the tutorial by cloning this repository:

git clone https://github.com/kelseyhightower/kubernetes-initializer-tutorial.git
cd kubernetes-initializer-tutorial

Tutorial