Skip to content

Add uploading OVN backups to Ceph Swift API gateway #15

Add uploading OVN backups to Ceph Swift API gateway

Add uploading OVN backups to Ceph Swift API gateway #15

Workflow file for this run

name: Kustomize GitHub Actions for ovn
on:
pull_request:
paths:
- kustomize/ovn/**
- .github/workflows/kustomize-ovn.yaml
jobs:
kustomize:
name: Kustomize
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Kustomize Install
working-directory: /usr/local/bin/
run: |
if [ ! -f /usr/local/bin/kustomize ]; then
curl -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | sudo bash
fi
- name: Run Kustomize Build
run: |
kustomize build kustomize/ovn > /tmp/rendered.yaml
- name: Return Kustomize Build
uses: actions/upload-artifact@v2
with:
name: kustomize-ovn-artifact
path: /tmp/rendered.yaml