From 1fe06cfff3dbb68789dc543919aca1919836d2c7 Mon Sep 17 00:00:00 2001 From: zanejohnson-azure Date: Fri, 10 Apr 2026 15:13:31 -0700 Subject: [PATCH] add stub pipeline YAML for configmap testing Minimal placeholder so the pipeline can be created in Azure DevOps. Full implementation lives in zane/configmap-testing-pipeline. --- .pipelines/azure-pipeline-config-tests.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .pipelines/azure-pipeline-config-tests.yaml diff --git a/.pipelines/azure-pipeline-config-tests.yaml b/.pipelines/azure-pipeline-config-tests.yaml new file mode 100644 index 000000000..16a28ec71 --- /dev/null +++ b/.pipelines/azure-pipeline-config-tests.yaml @@ -0,0 +1,21 @@ +# ConfigMap Testing Pipeline for ama-logs (stub - full implementation in zane/configmap-testing-pipeline) +trigger: none +pr: none + +parameters: + - name: clusterName + displayName: 'AKS Cluster Name' + type: string + - name: clusterResourceGroup + displayName: 'AKS Cluster Resource Group' + type: string + +stages: +- stage: ConfigMapTests + jobs: + - job: Placeholder + pool: + name: Azure-Pipelines-CI-Test-EO + steps: + - script: echo "Pipeline created. Point to branch zane/configmap-testing-pipeline for full implementation." + displayName: 'Placeholder'