Skip to content

Commit 5735136

Browse files
committed
urls prd
1 parent d928c41 commit 5735136

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

runtime-cancel-run-action/script.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def run(metadata):
1414

1515
print(f"Requesting Run {RUN_ID} to be cancelled")
1616

17-
cancel_request = post_with_authorization(url=f"https://runtime-manager.stg.stackspot.com/v1/run/cancel/{RUN_ID}?force=true",
17+
cancel_request = post_with_authorization(url=f"https://runtime-manager.v1.stackspot.com/v1/run/cancel/{RUN_ID}?force=true",
1818
headers={'Content-Type': 'application/json' },
1919
body=None,
2020
timeout=20)

runtime-deploy-action/templates/script.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ FLAGS=$(echo "-v {{ inputs.path_to_mount }}:/app-volume \
33
-e AUTHENTICATE_CLIENT_ID={{ inputs.client_id }} \
44
-e AUTHENTICATE_CLIENT_SECRET={{ inputs.client_key }} \
55
-e AUTHENTICATE_CLIENT_REALMS={{ inputs.client_realm }} \
6-
-e AUTHENTICATE_URL=https://account-keycloak.stg.stackspot.com \
6+
-e AUTHENTICATE_URL=https://idm.stackspot.com \
77
-e REPOSITORY_NAME={{ inputs.repository_name }} \
8-
-e FEATURES_API_MANAGER=https://runtime-manager.stg.stackspot.com \
8+
-e FEATURES_API_MANAGER=https://runtime-manager.v1.stackspot.com \
99
-e FEATURES_BASEPATH_TMP=/tmp/runtime/deploys \
1010
-e FEATURES_BASEPATH_EBS=/opt/runtime \
1111
-e FEATURES_TEMPLATES_FILEPATH=/app/ \

runtime-destroy-action/templates/script.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ FLAGS=$(echo "-v {{ inputs.path_to_mount }}:/app-volume \
33
-e AUTHENTICATE_CLIENT_ID={{ inputs.client_id }} \
44
-e AUTHENTICATE_CLIENT_SECRET={{ inputs.client_key }} \
55
-e AUTHENTICATE_CLIENT_REALMS={{ inputs.client_realm }} \
6-
-e AUTHENTICATE_URL=https://account-keycloak.stg.stackspot.com \
6+
-e AUTHENTICATE_URL=https://idm.stackspot.com \
77
-e REPOSITORY_NAME={{ inputs.repository_name }} \
8-
-e FEATURES_API_MANAGER=https://runtime-manager.stg.stackspot.com \
8+
-e FEATURES_API_MANAGER=https://runtime-manager.v1.stackspot.com \
99
-e FEATURES_BASEPATH_TMP=/tmp/runtime/deploys \
1010
-e FEATURES_BASEPATH_EBS=/opt/runtime \
1111
-e FEATURES_TEMPLATES_FILEPATH=/app/ \

runtime-iac-action/templates/script.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ FLAGS=$(echo "-v {{ inputs.path_to_mount }}:/app-volume \
33
-e AUTHENTICATE_CLIENT_ID={{ inputs.client_id }} \
44
-e AUTHENTICATE_CLIENT_SECRET={{ inputs.client_key }} \
55
-e AUTHENTICATE_CLIENT_REALMS={{ inputs.client_realm }} \
6-
-e AUTHENTICATE_URL="https://account-keycloak.stg.stackspot.com" \
7-
-e FEATURES_API_MANAGER="https://runtime-manager.stg.stackspot.com" \
6+
-e AUTHENTICATE_URL="https://idm.stackspot.com" \
7+
-e FEATURES_API_MANAGER="https://runtime-manager.v1.stackspot.com" \
88
-e REPOSITORY_NAME={{ inputs.repository_name }} \
99
-e AWS_REGION={{ inputs.aws_region }}")
1010

runtime-manager-action/script.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ def run(metadata):
143143

144144
print("Deploying Self-Hosted...")
145145

146-
r2 = post_with_authorization(url=f"https://runtime-manager.stg.stackspot.com/v1/run/self-hosted/deploy/{manifest_type}",
146+
r2 = post_with_authorization(url=f"https://runtime-manager.v1.stackspot.com/v1/run/self-hosted/deploy/{manifest_type}",
147147
body=request_data,
148148
headers={'Content-Type': 'application/json' },
149149
timeout=20)

runtime-rollback-action/script.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def run(metadata):
107107

108108
print("Deploying Self-Hosted Rollback..")
109109

110-
rollback_request = post_with_authorization(url=f"https://runtime-manager.stg.stackspot.com/v1/run/self-hosted/rollback/{stk_yaml_type}",
110+
rollback_request = post_with_authorization(url=f"https://runtime-manager.v1.stackspot.com/v1/run/self-hosted/rollback/{stk_yaml_type}",
111111
body=request_data,
112112
headers={'Content-Type': 'application/json' },
113113
timeout=20)

runtime-run-all/script.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ def run(metadata):
1414
manifest_action = f'{metadata.inputs.get("base_path_actions")}/runtime-create-manifest-action'
1515
manager_action = f'{metadata.inputs.get("base_path_actions")}/runtime-manager-action'
1616
iac_action = f'{metadata.inputs.get("base_path_actions")}/runtime-iac-action'
17-
container_url_iac = 'stackspot/runtime-job-iac:rc-2.19.0'
17+
container_url_iac = 'stackspot/runtime-job-iac:latest'
1818
deploy_action = f'{metadata.inputs.get("base_path_actions")}/runtime-deploy-action'
19-
container_url_deploy = 'stackspot/runtime-job-deploy:rc-2.36.0'
19+
container_url_deploy = 'stackspot/runtime-job-deploy:latest'
2020

2121
print(f"-----> Run runtime-create-manifest-action!")
2222

0 commit comments

Comments
 (0)