From c416b255442a8feed640b3ab04b1686f342b7aeb Mon Sep 17 00:00:00 2001 From: Greg Miernicki <14550-gmiernicki@users.noreply.gitlab.example.com> Date: Wed, 18 May 2022 17:27:51 +0000 Subject: [PATCH] updates to the proper current syntax to start k3d w/o metrics-server and traefik --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f8c31f661d..281d39ec99 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -37,8 +37,8 @@ Per the [charter](https://repo1.dso.mil/platform-one/big-bang/charter), all Big Follow the steps below to get a local Kubernetes cluster for Big Bang using [k3d](https://k3d.io/). ```bash -# Create a local k3d cluster with the appropriate port forwards -k3d cluster create --k3s-server-arg "--disable=traefik" --k3s-server-arg "--disable=metrics-server" -p 80:80@loadbalancer -p 443:443@loadbalancer +# Create a local k3d cluster with the appropriate port forwards (tested on version 5.4.1) +k3d cluster create --k3s-arg "--no-deploy=metrics-server,traefik@server:*" -p 80:80@loadbalancer -p 443:443@loadbalancer ``` ## Deploying Big Bang (Quick Start) -- GitLab