-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added functionality to create volume from snapshot CRN (#73)
* added functionality to create volume from snapshot CRN Signed-off-by: Arashad Ahamad <[email protected]> * fixed sample code to create volume from snapshot CRN Signed-off-by: Arashad Ahamad <[email protected]> --------- Signed-off-by: Arashad Ahamad <[email protected]>
- Loading branch information
Showing
11 changed files
with
52 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,3 +47,6 @@ coverage: | |
.PHONY: vet | ||
vet: | ||
go vet ${GOPACKAGES} | ||
|
||
clean: | ||
rm -rf libSample |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[Bluemix] | ||
iam_url = "https://iam.test.cloud.ibm.com" | ||
iam_client_id = "bx" | ||
iam_client_secret = "bx" | ||
iam_api_key = "" | ||
refresh_token = "" | ||
pay_tier = "paid" | ||
containers_api_route = "https://containers.test.cloud.ibm.com" | ||
encryption = false | ||
containers_api_route_private = "https://private.containers.test.cloud.ibm.com" | ||
|
||
[VPC] | ||
g2_token_exchange_endpoint_url = "https://iam.stage1.bluemix.net" | ||
g2_riaas_endpoint_url = "https://us-south-stage01.iaasdev.cloud.ibm.com/" | ||
g2_riaas_endpoint_private_url = "https://us-south-stage01.iaasdev.cloud.ibm.com" | ||
g2_resource_group_id = "" | ||
g2_api_key = "" | ||
encryption = false | ||
provider_type = "g2" | ||
iks_token_exchange_endpoint_private_url = "https://private.containers.test.cloud.ibm.com" |