From 911aca3539a0c2ae86e9bdb90a8d545dd0b6869c Mon Sep 17 00:00:00 2001 From: Hidetake Iwata Date: Mon, 26 Mar 2018 16:30:42 +0900 Subject: [PATCH] Update README.md --- README.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2c43a6c..63a113b 100644 --- a/README.md +++ b/README.md @@ -133,22 +133,28 @@ kubectl config set-credentials CLUSTER_NAME \ In actual team operation, you can share the following config to your team members for easy setup. ```yaml +#!/bin/sh CLUSTER_NAME="hello.k8s.local" # Set the certificate -echo "YOUR_CERTIFICATE" > "~/.kube/$CLUSTER_NAME.crt" +mkdir -p "$HOME/.kube" +cat > "$HOME/.kube/$CLUSTER_NAME.crt" <