diff --git a/system/upgrade.yaml b/system/upgrade.yaml index 5d70672..5cba8f3 100644 --- a/system/upgrade.yaml +++ b/system/upgrade.yaml @@ -25,14 +25,3 @@ tasks: loop: values: $(github) as: settings - - - call: - description: 'Upgrade orchestra application "$(settings.role)"' - script: "@(system)/upgrade_orchestra_application.yaml" - args: - settings: $(settings) - gitToken: $(git_token) - keyfile: $(keyfile) - loop: - values: $(orchestra) - as: settings diff --git a/system/upgrade_applications.yaml b/system/upgrade_applications.yaml index fe60df0..c3c43bd 100644 --- a/system/upgrade_applications.yaml +++ b/system/upgrade_applications.yaml @@ -16,14 +16,3 @@ tasks: loop: values: $(github) as: settings - - - call: - description: 'Upgrade orchestra application "$(settings.role)"' - script: "@(system)/upgrade_orchestra_application.yaml" - args: - settings: $(settings) - gitToken: $(git_token) - keyfile: $(keyfile) - loop: - values: $(orchestra) - as: settings diff --git a/system/upgrade_orchestra_application.yaml b/system/upgrade_orchestra_application.yaml deleted file mode 100644 index 4018ad3..0000000 --- a/system/upgrade_orchestra_application.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# yaml-language-server: $schema=https://git.jesof.ch/public/mstr-schemas/raw/branch/main/mstr-tasks-schema.json -tasks: - - execute: - description: "Deploy $(settings.role)" - exec: "orchestra" - dir: "@(provisioning)" - args: - - "-roles" - - "$(settings.role)" - - "-tags" - - "update" - - - execute: - description: "Check health endpoint" - exec: "curl" - args: - - "--retry" - - "10" - - "--silent" - - $(settings.health_url) - when: $(has("settings.health_url"))