-
Notifications
You must be signed in to change notification settings - Fork 10
112 lines (98 loc) · 3.64 KB
/
build.yaml
File metadata and controls
112 lines (98 loc) · 3.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
name: Build Training and Publish
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
with:
submodules: recursive
- name: Set up npm for linting
uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Lint Markdown
run: npm ci && npm run mdlint
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Quay.io Container Registry
uses: docker/login-action@v3
with:
registry: quay.io
username: ${{ secrets.QUAY_USER }}
password: ${{ secrets.QUAY_PW }}
# uses: docker/login-action@v3
# with:
# registry: registry.puzzle.ch
# username: ${{ secrets.PUZZLE_REG_USERNAME }}
# password: ${{ secrets.PUZZLE_REG_TOKEN }}
# - name: Build Puzzle Version
# uses: docker/build-push-action@v6
# with:
# context: .
# file: ./Dockerfile
# push: true
# tags: |
# registry.puzzle.ch/puzzle/quarkus-techlab:pr-${{ github.event.pull_request.number }}
- name: Build Mobi Version
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
build-args: |
TRAINING_HUGO_ENV=mobi
push: true
tags: |
quay.io/acend/quarkus-techlab:pr-${{ github.event.pull_request.number }}-mobi
- 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: Create KUBECONFIG
env:
KUBE_CONFIG: '${{ secrets.KUBECONFIG_TEST_AV2 }}'
run: |
mkdir -p $HOME/.kube
echo "$KUBE_CONFIG" > $HOME/.kube/config
# - name: Deploy Helm Release
# env:
# TRAINING_HELM_RELEASE: 'pr-${{ github.event.pull_request.number }}'
# TRAINING_NAMESPACE: 'pitc-cicd-quarkus-techlab-test'
# TRAINING_VERSION: '${{ github.sha }}'
# run: |
# helm upgrade $TRAINING_HELM_RELEASE acend-training-chart --install --wait \
# --kubeconfig $HOME/.kube/config \
# --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: 'pr-${{ github.event.pull_request.number }}'
# TRAINING_NAMESPACE: 'pitc-cicd-quarkus-techlab-test'
# run: |
# kubectl rollout restart deployment/$TRAINING_HELM_RELEASE-quarkus-techlab-puzzle \
# --kubeconfig $HOME/.kube/config \
# --namespace $TRAINING_NAMESPACE
# kubectl rollout restart deployment/$TRAINING_HELM_RELEASE-quarkus-techlab-mobi \
# --kubeconfig $HOME/.kube/config \
# --namespace $TRAINING_NAMESPACE
#
# - name: Comment PR Environments in PR
# uses: marocchino/sticky-pull-request-comment@v2
# with:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# message: |
# PR Environments:
# * puzzle <https://quarkus-techlab-pr-${{ github.event.pull_request.number }}.ocp.cloudscale.puzzle.ch>
# * mobi <https://quarkus-techlab-mobi-pr-${{ github.event.pull_request.number }}.ocp.cloudscale.puzzle.ch>