Documentation: add docs for TPR to CRD migration

This commit is contained in:
rithu john
2017-09-15 15:53:13 -07:00
parent 03de0ecbeb
commit 34dcf6c9a0
10 changed files with 142 additions and 0 deletions

13
scripts/dump-tprs Normal file
View File

@@ -0,0 +1,13 @@
#!/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