Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Azure Sandbox #60

Open
wants to merge 27 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
2abb516
Adding Azure Sandbox model
makirill May 13, 2024
8833906
Adding pool management
makirill Jul 24, 2024
0b7463c
Merge branch 'main' into feature/azure-provider
makirill Jul 24, 2024
d7d98f1
Adding placeholder for azure provider
makirill Jul 26, 2024
21c6957
Adding placeholder for the Azure placement creation
makirill Jul 28, 2024
fd038b3
Resources clean-up
makirill Jul 30, 2024
2a45684
Moving azure package to the new directory
makirill Aug 7, 2024
7ccfc3b
Minor update
makirill Aug 8, 2024
2f9cc66
Fixing some bugs with the Azure Sandbox provisioning
makirill Aug 10, 2024
86913a3
Some minor bugfixes
makirill Aug 27, 2024
1e68350
Creating Azure Sandbox provider as reference
makirill Aug 28, 2024
e8a5075
Adding Mutex to the pool allocation
makirill Aug 28, 2024
2348d33
Creating function to init new Azure sandbox structure
makirill Sep 16, 2024
47784ce
Minor fixes
makirill Sep 16, 2024
1401943
Redisigned create and delete functions
makirill Sep 18, 2024
6653577
Updated Azure sandbox create and cleanup methods
makirill Sep 18, 2024
7852431
tools: Remove status check from hurl file
fridim Aug 5, 2024
40ba7a2
Implement Quota for OcpSandbox (#79)
fridim Sep 11, 2024
ea2d3af
Add condition for virt and add rolebinding for hcp (#78)
agonzalezrh Sep 12, 2024
b5bdbfb
Apply gofmt
fridim Sep 12, 2024
fbdbc75
Add hurl file to update shared cluster
fridim Sep 16, 2024
56a83bd
OcpSandbox: Implement limit range (#81)
fridim Sep 17, 2024
81092d8
Add secret to generate a token (#82)
agonzalezrh Sep 25, 2024
b5ed604
Merge branch 'main' into feature/azure-provider
makirill Sep 26, 2024
ec337a7
Fixing problems after merge conflicts
makirill Sep 26, 2024
3b13187
Merge remote-tracking branch 'origin/main' into azure-provider
fridim Oct 23, 2024
877ca45
Rename azure file to fit
fridim Oct 23, 2024
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
Prev Previous commit
Next Next commit
Add hurl file to update shared cluster
fridim authored and makirill committed Sep 26, 2024
commit fbdbc754e4d1d40a7db0d80b7c5befa1486bd5b4
21 changes: 21 additions & 0 deletions tools/ocp_shared_cluster_configuration_update.hurl
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#################################################################################
# Get an access token using the login token
#################################################################################

GET {{host}}/api/v1/login
Authorization: Bearer {{login_token_admin}}
HTTP 200
[Captures]
access_token_admin: jsonpath "$.access_token"
[Asserts]
jsonpath "$.access_token" isString
jsonpath "$.access_token_exp" isString

#################################################################################
# Update the OcpClusterConfiguration
#################################################################################
# Set quota_required to true
PUT {{host}}/api/v1/ocp-shared-cluster-configurations/{{cluster}}/update
Authorization: Bearer {{ access_token_admin }}
Content-Type: application/json
file,{{payload}};