Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
18 changes: 18 additions & 0 deletions docs/demo.outline
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Demo outline to be recorded by team:

1: on a clean system, show the system is clean
2: run through cli install
* show help for various commands
3: on a openshift cluster, w/ oadp already installed, dpa configed and sample app ready. Have non-admin user prepared w/ non-admin app deployed
4. execute admin backup
* show cli logs / describe
4. nuke app namespace
5. restore app
* show cli logs / describe
6. WIN
7. Now log out of cluster as admin, login as non-admin
8. Show app, add data to the to-dolist
9. run non-admin cli for backup
10. run non-admin cli logs for backup
11. run non-admin describe for backup
12. run non-admin backup delete
4 changes: 3 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ require (
github.com/migtools/oadp-non-admin v0.0.0-20250505165924-a9be4321819c
github.com/spf13/cobra v1.9.1
github.com/spf13/pflag v1.0.6
github.com/vmware-tanzu/velero v1.16.1
github.com/vmware-tanzu/velero v1.14.0
gopkg.in/yaml.v2 v2.4.0
k8s.io/api v0.33.1
k8s.io/apimachinery v0.33.1
Expand Down Expand Up @@ -99,3 +99,5 @@ require (
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect
sigs.k8s.io/yaml v1.4.0 // indirect
)

replace github.com/vmware-tanzu/velero => github.com/openshift/velero v0.10.2-0.20250429182916-56ba9c6f9c7f
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,8 @@ github.com/onsi/gomega v1.35.1 h1:Cwbd75ZBPxFSuZ6T+rN/WCb/gOc6YgFBXLlZLhC7Ds4=
github.com/onsi/gomega v1.35.1/go.mod h1:PvZbdDc8J6XJEpDK4HCuRBm8a6Fzp9/DmhC9C7yFlog=
github.com/openshift/oadp-operator v1.0.2-0.20250425163444-a21288a0f20b h1:9u0bnuVHUFN24crRZOiog1ZgQCZaMJtFO9y8vT/+cXQ=
github.com/openshift/oadp-operator v1.0.2-0.20250425163444-a21288a0f20b/go.mod h1:IvBUP2qVUBst49SSzVhxajq4Bs1n/lm9K/kguhTltqI=
github.com/openshift/velero v0.10.2-0.20250429182916-56ba9c6f9c7f h1:j8eSzFwDy+Fmi7Cd0rXO6gzzOUOUsB4YK7Q8cc6k/pg=
github.com/openshift/velero v0.10.2-0.20250429182916-56ba9c6f9c7f/go.mod h1:sASoDB9pLWqvIi1nD1ZFOpmj5JB+p10lHVm+f+Hp1oU=
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
Expand Down Expand Up @@ -178,8 +180,6 @@ github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO
github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
github.com/vmware-tanzu/velero v1.16.1 h1:T9Jdt/6Jl1x+nT+OCCyOBtiakCdInHZAB3qU/jH6yGg=
github.com/vmware-tanzu/velero v1.16.1/go.mod h1:+wInt9pLqlRiUZAWsO5eSxLZK9Q3jSV9MFaUrBfvGN0=
github.com/x448/float16 v0.8.4 h1:qLwI1I70+NjRFUR3zs1JPUCgaCXSh3SW62uAKT1mSBM=
github.com/x448/float16 v0.8.4/go.mod h1:14CWIYCyZA/cWjXOioeEpHeN/83MdbZDRQHoFcYsOfg=
github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
Expand Down
Loading