From 1ed0c4b8c1c96aa836ec18172743d1f91d27dc79 Mon Sep 17 00:00:00 2001 From: Yurii Kondrakov Date: Tue, 3 Dec 2024 01:04:59 -0500 Subject: [PATCH] Add snap templates for charmed-openstack-exporter (#124) --- ...harmed-openstack-exporter-snap_main.tfvars | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/terraform-plans/configs/charmed-openstack-exporter-snap_main.tfvars b/terraform-plans/configs/charmed-openstack-exporter-snap_main.tfvars index 7ec7168..e3dd43d 100644 --- a/terraform-plans/configs/charmed-openstack-exporter-snap_main.tfvars +++ b/terraform-plans/configs/charmed-openstack-exporter-snap_main.tfvars @@ -12,11 +12,30 @@ templates = { destination = ".github/CODEOWNERS" vars = {} } + check = { + source = "./templates/github/snap_check.yaml.tftpl" + destination = ".github/workflows/check.yaml" + vars = { + runs_on = "[[ubuntu-22.04], [self-hosted, jammy, ARM64]]", + } + } promote = { source = "./templates/github/snap_promote.yaml.tftpl" destination = ".github/workflows/promote.yaml" vars = {} } + release = { + source = "./templates/github/snap_release.yaml.tftpl" + destination = ".github/workflows/release.yaml" + vars = { + runs_on = "[[ubuntu-22.04], [self-hosted, jammy, ARM64]]", + } + } + yamllint = { + source = "./templates/github/snap_yamllint.yaml.tftpl" + destination = ".yamllint" + vars = {} + } tics = { source = "./templates/github/snap_tics.yaml.tftpl" destination = ".github/workflows/tics.yaml"