mirror of https://github.com/dexidp/dex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
322 B
14 lines
322 B
|
9 years ago
|
#!/bin/bash
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
if [ -z $DEX_NAMESPACE ];then
|
||
|
|
echo "Must export \$DEX_NAMESPACE"
|
||
|
|
exit
|
||
|
|
fi
|
||
|
|
|
||
|
|
for RESOURCE in authcodes authrequests connectors oauth2clients offlinesessionses refreshtokens passwords signingkeies; do
|
||
|
|
kubectl get --namespace=$DEX_NAMESPACE $RESOURCE.oidc.coreos.com -o yaml
|
||
|
|
done
|
||
|
|
|