Skip to content

Commit

Permalink
Added Clone functionality (#173)
Browse files Browse the repository at this point in the history
* Added Cloning Support with additional arguments

* Changed Custom Resource Definition (to support provisioning and cloning)

* Edited Webhook Validation

* Updated README

* Bumped to version 0.0.8
  • Loading branch information
manavrajvanshi authored Nov 6, 2023
1 parent d0d85c4 commit a9e5953
Show file tree
Hide file tree
Showing 45 changed files with 2,513 additions and 1,446 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,5 @@ config/samples/ndb.yaml

test/__debug_bin
automation/sandbox
automation/tests/*/*.log
automation/tests/**/*.log
*.env
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# VERSION defines the project version for the bundle.
# Update this value when you upgrade the version of your project.
# To re-generate a bundle for another specific version without changing the standard setup, you can:
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.7)
# - use environment variables to overwrite this value (e.g export VERSION=0.0.7)
VERSION ?= 0.0.7
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.8)
# - use environment variables to overwrite this value (e.g export VERSION=0.0.8)
VERSION ?= 0.0.8

# CHANNELS define the bundle channels used in the bundle.
# Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable")
Expand Down Expand Up @@ -267,7 +267,7 @@ else
touch ndb_api/$(api)_response_types.go && cp hack/boilerplate.go.txt ndb_api/$(api)_response_types.go && echo -e "\n" >> ndb_api/$(api)_response_types.go && echo "package ndb_api" >> ndb_api/$(api)_response_types.go
endif

# Usage: Export the environment variables before running the target
# Usage: Create the following variables in the .env folder of automation/tests before running the target
# KUBECONFIG='...'
# DB_SECRET_PASSWORD='...'
# NDB_SECRET_USERNAME='...'
Expand Down
Loading

0 comments on commit a9e5953

Please sign in to comment.