From c52bfc79d3d914d6d3032a75a6f7f6e4995a51d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Wei=C3=9Fe?= <66256922+daniel-weisse@users.noreply.github.com> Date: Tue, 9 Aug 2022 08:20:23 +0200 Subject: [PATCH] Set default values for e2e-pipeline (#351) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Daniel Weiße Co-authored-by: Fabian Kammel --- .github/actions/constellation_create/action.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/actions/constellation_create/action.yml b/.github/actions/constellation_create/action.yml index dd4d110ea..340b45c1b 100644 --- a/.github/actions/constellation_create/action.yml +++ b/.github/actions/constellation_create/action.yml @@ -36,6 +36,17 @@ runs: - name: Constellation config generate run: | constellation config generate ${{ inputs.cloudProvider }} + yq eval -i \ + "(.provider | select(. | has(\"azure\")).azure.subscription) = \"0d202bbb-4fa7-4af8-8125-58c269a05435\" | + (.provider | select(. | has(\"azure\")).azure.tenant) = \"adb650a8-5da3-4b15-b4b0-3daf65ff7626\" | + (.provider | select(. | has(\"azure\")).azure.location) = \"North Europe\" | + (.provider | select(. | has(\"azure\")).azure.userAssignedIdentity) = \"/subscriptions/0d202bbb-4fa7-4af8-8125-58c269a05435/resourceGroups/constellation-images/providers/Microsoft.ManagedIdentity/userAssignedIdentities/constellation-dev-identity\"" \ + constellation-conf.yaml + yq eval -i \ + "(.provider | select(. | has(\"gcp\")).gcp.project) = \"constellation-331613\" | + (.provider | select(. | has(\"gcp\")).gcp.region) = \"europe-west3\" | + (.provider | select(. | has(\"gcp\")).gcp.zone) = \"europe-west3-b\"" \ + constellation-conf.yaml shell: bash - name: Set latest image