Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-farache committed Dec 18, 2024
1 parent 9e59254 commit 0c75982
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ spec:
operation: '{ "result": { "completedWith":"success", "message": "VM " + .vm_name + " in namespace "+.vm_namespace + " using image "+ .vm_image +" ready and running.", "outputs":[ { "key":"Console URL", "value": $SECRET.cluster_console_url + "/k8s/ns/" + .vm_namespace + "/kubevirt.io~v1~VirtualMachine/" + .vm_name + "/console/standalone", "format":"link" } ] } }'
type: expression
- name: errorVMNotRunningResult
operation: '{ "result": { "completedWith":"error", "message": "VM " + .vm_name + " in namespace " + .vm_namespace + " using image " + .vm_image +" not ready after " + .vmStatusRunningRetries + " retries: " + .vm.status } }'
operation: '{ "result": { "completedWith":"error", "message": "VM " + .vm_name + " in namespace " + .vm_namespace + " using image " + .vm_image +" not ready after " + (.vmStatusRunning|tostring) + " retries: " + .vm.status } }'
type: expression
- name: errorAuthorizationDeniedResult
operation: '{ "result": { "completedWith":"error", "message": "Authorization denied to create VM " + .vm_name + " in namespace "+.vm_namespace + " using image "+ .vm_image, "outputs":[ { "key":"Jira issue", "value": $SECRET.jira_url + "/jira/servicedesk/projects/" + .projectKey + "/issues/" + .jiraCreateIssueResult.key, "format":"link" }] } }'
Expand Down Expand Up @@ -346,7 +346,7 @@ spec:
functionRef:
arguments:
payload:
description: '"VM " + .vm_name + " in namespace " + .vm_namespace + " using image " + .vm_image +" not ready after " + .vmStatusRunningRetries + " retries: " + .vm.status'
description: '"VM " + .vm_name + " in namespace " + .vm_namespace + " using image " + .vm_image +" not ready after " + (.vmStatusRunningRetries|tostring) + " retries: " + .vm.status'
severity: high
title: '"VM " + .vm_name + " in namespace "+.vm_namespace + " not ready"'
topic: Request VM on CNV workflow
Expand Down Expand Up @@ -417,7 +417,7 @@ spec:
podTemplate:
container:
resources: {}
image: quay.io/orchestrator/serverless-workflow-request-vm-cnv:c1989c43998cd6a8bd5ed164d78a99841ea64e48
image: quay.io/orchestrator/serverless-workflow-request-vm-cnv:8cc116b6a74f709d5e401226579ca6976b591ec6
envFrom:
- secretRef:
name: request-vm-cnv-creds
Expand Down

0 comments on commit 0c75982

Please sign in to comment.