Skip to content

Commit d449a8e

Browse files
authored
Slim down cookies (#285)
* store only required data in cookies to avoid exceeding their size limit On-behalf-of: @SAP christoph.mewes@sap.com * fix 'make dex/bin/dex' On-behalf-of: @SAP christoph.mewes@sap.com * cleanup go.mod On-behalf-of: @SAP christoph.mewes@sap.com
1 parent 0296caa commit d449a8e

9 files changed

Lines changed: 187 additions & 227 deletions

File tree

Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ $(KUBE_APPLYCONFIGURATION_GEN):
185185
GOBIN=$(GOBIN_DIR) $(GO_INSTALL) k8s.io/code-generator/cmd/$(KUBE_APPLYCONFIGURATION_GEN_BIN) $(KUBE_APPLYCONFIGURATION_GEN_BIN) $(KUBE_APPLYCONFIGURATION_GEN_VER)
186186

187187

188-
codegen: WHAT ?= ./sdk/client
188+
codegen: WHAT ?= ./sdk/client
189189
codegen: $(CONTROLLER_GEN) $(YAML_PATCH) $(CODE_GENERATOR) $(KUBE_CLIENT_GEN) $(KUBE_LISTER_GEN) $(KUBE_INFORMER_GEN) $(KUBE_APPLYCONFIGURATION_GEN)
190190
go mod download
191191
./hack/update-codegen.sh
@@ -245,8 +245,7 @@ E2E_PARALLELISM ?= 1
245245
dex:
246246
git clone https://github.com/dexidp/dex.git
247247
dex/bin/dex: dex
248-
cd dex
249-
make
248+
(cd dex; make)
250249

251250
$(DEX):
252251
mkdir -p $(TOOLS_DIR)

backend/cookie/session.go

Lines changed: 0 additions & 115 deletions
This file was deleted.

0 commit comments

Comments
 (0)