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.
13 lines
322 B
13 lines
322 B
#!/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 |
|
|
|
|