Monitoring: adding openstack api exporter #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Helm GitHub Actions for openstack-exporter | |
on: | |
pull_request: | |
paths: | |
- helm-configs/monitoring/openstack-api-exporter/** | |
- kustomize/monitoring/openstack-api-exporter/** | |
- .github/workflows/helm-openstack-api-exporter.yaml | |
jobs: | |
helm: | |
strategy: | |
matrix: | |
overlays: | |
- base | |
- aio | |
name: Helm | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: azure/setup-helm@v3 | |
with: | |
version: latest | |
token: "${{ secrets.GITHUB_TOKEN }}" | |
id: helm | |
- name: Kubectl Install | |
working-directory: /usr/local/bin/ | |
run: | | |
if [ ! -f /usr/local/bin/kubectl ]; then | |
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" | |
chmod +x ./kubectl | |
fi | |
- name: Pull OSH submodules | |
run: | | |
git submodule update --init submodules/openstack-helm | |
git submodule update --init submodules/openstack-helm-infra | |
- name: Make OSH submodule | |
run: | | |
cd submodules/openstack-helm-infra | |
make prometheus-openstack-exporter | |
- name: Run Helm Template | |
run: | | |
cd submodules/openstack-helm-infra | |
${{ steps.helm.outputs.helm-path }} template prometheus-openstack-exporter ./prometheus-openstack-exporter \ | |
--namespace=openstack \ | |
--wait \ | |
--timeout 120m \ | |
-f ${{ github.workspace }}/helm-configs/monitoring/openstack-api-exporter/openstack-api-exporter-helm-overrides.yaml \ | |
--post-renderer ${{ github.workspace }}/kustomize/kustomize.sh \ | |
--post-renderer-args monitoring/openstack-exporter/${{ matrix.overlays }} > /tmp/rendered.yaml | |
- name: Return helm Build | |
uses: actions/upload-artifact@v2 | |
with: | |
name: helm-openstack-exporter-artifact-${{ matrix.overlays }} | |
path: /tmp/rendered.yaml |