GoWiki
Index
Sections
Search
Login
k8s
Authentication
# Authentication This document describes kubernetes authentication using Dex and gangway. ## Installation Generate a static shared secret: ``` openssl rand -base64 32 ``` kubectl -n auth create secret generic gangway-key \ --from-literal=sesssionkey=$(openssl rand -base64 32)