refactor and add eda-server lab #108
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: Publish Main Version | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- 'slides/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- | |
name: Set up npm for linting | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '15.x' | |
- | |
name: Lint Markdown | |
run: npm ci && npm run mdlint | |
- | |
name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- | |
name: Login to Quay.io Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: quay.io | |
username: ${{ secrets.QUAYIO_USERNAME }} | |
password: ${{ secrets.QUAYIO_TOKEN }} | |
- | |
name: Build Latest Version | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
file: ./Dockerfile | |
push: true | |
tags: | | |
quay.io/puzzle/ansible-training:latest | |
- | |
name: Run vulnerability scanner | |
uses: aquasecurity/trivy-action@master | |
with: | |
image-ref: 'quay.io/puzzle/ansible-training:latest' | |
format: 'table' | |
output: 'trivy-results.txt' | |
exit-code: '0' | |
ignore-unfixed: true | |
vuln-type: 'os' | |
severity: 'CRITICAL,HIGH' | |
- | |
name: Archive vulnerability scan results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: trivy-results-build | |
path: trivy-results.txt | |
- | |
name: 'Install Helm' | |
uses: azure/setup-helm@v3 | |
with: | |
version: v3.6.2 | |
- | |
name: Install Kubectl | |
uses: azure/setup-kubectl@v3 | |
with: | |
version: v1.21.2 | |
- | |
name: Deploy Helm Release | |
env: | |
TRAINING_HELM_RELEASE: 'latest' | |
TRAINING_NAMESPACE: 'pitc-ansible-training-prod' | |
TRAINING_VERSION: '${{ github.sha }}' | |
KUBE_TOKEN: '${{ secrets.OPENSHIFT_SA_TOKEN_PROD }}' | |
KUBE_URL: '${{ secrets.OPENSHIFT_API_URL }}' | |
run: | | |
helm upgrade $TRAINING_HELM_RELEASE acend-training-chart --install --wait --kube-apiserver=$KUBE_URL --kube-token=$KUBE_TOKEN --namespace=$TRAINING_NAMESPACE --set=app.name=$HELM_RELEASE --set=app.version=$TRAINING_VERSION --repo=https://acend.github.io/helm-charts/ --values=helm-chart/values.yaml --atomic | |
- | |
name: Redeploy Deployments | |
env: | |
TRAINING_HELM_RELEASE: 'latest' | |
TRAINING_NAMESPACE: 'pitc-ansible-training-prod' | |
KUBE_TOKEN: '${{ secrets.OPENSHIFT_SA_TOKEN_PROD }}' | |
KUBE_URL: '${{ secrets.OPENSHIFT_API_URL }}' | |
run: | | |
kubectl rollout restart deployment/$TRAINING_HELM_RELEASE-ansible-puzzle --server=$KUBE_URL --token=$KUBE_TOKEN --namespace $TRAINING_NAMESPACE |