chore(deps): update dependency husky to v9.1.7 (#632) #431
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: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- | |
name: Set up npm for linting | |
uses: actions/setup-node@v4 | |
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 acend organization | |
uses: docker/login-action@v3 | |
with: | |
registry: quay.io | |
username: ${{ secrets.QUAYIO_USERNAME }} | |
password: ${{ secrets.QUAYIO_TOKEN }} | |
- | |
name: Build Acend Version | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
file: ./Dockerfile | |
push: true | |
tags: | | |
quay.io/acend/kubernetes-basics-training:latest | |
- | |
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/kubernetes-basics-training:latest-mobi | |
- | |
name: Build OpenShift Version | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
file: ./Dockerfile | |
build-args: | | |
TRAINING_HUGO_ENV=openshift | |
push: true | |
tags: | | |
quay.io/acend/kubernetes-basics-training:latest-openshift | |
- | |
name: Build Baloise Version | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
file: ./Dockerfile | |
build-args: | | |
TRAINING_HUGO_ENV=baloise | |
push: true | |
tags: | | |
quay.io/acend/kubernetes-basics-training:latest-baloise | |
- | |
name: Build SBB Version | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
file: ./Dockerfile | |
build-args: | | |
TRAINING_HUGO_ENV=sbb | |
push: true | |
tags: | | |
quay.io/acend/kubernetes-basics-training:latest-sbb | |
- | |
name: Build BFH Version | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
file: ./Dockerfile | |
build-args: | | |
TRAINING_HUGO_ENV=bfh | |
push: true | |
tags: | | |
quay.io/acend/kubernetes-basics-training:latest-bfh | |
- | |
name: Login to quay.io appuio organization | |
uses: docker/login-action@v3 | |
with: | |
registry: quay.io | |
username: ${{ secrets.QUAYIO_USERNAME_TECHLAB }} | |
password: ${{ secrets.QUAYIO_TOKEN_TECHLAB }} | |
- | |
name: Build techlab version | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
file: ./Dockerfile | |
build-args: | | |
TRAINING_HUGO_ENV=techlab | |
push: true | |
tags: | | |
quay.io/appuio/techlab:latest | |
- | |
name: 'Install Helm' | |
uses: azure/setup-helm@v4 | |
with: | |
version: v3.6.2 | |
- | |
name: Install Kubectl | |
uses: azure/setup-kubectl@v4 | |
with: | |
version: v1.21.2 | |
- | |
name: Create KUBECONFIG | |
env: | |
KUBE_CONFIG: '${{ secrets.KUBECONFIG_K8S_ACEND }}' | |
run: | | |
mkdir -p $HOME/.kube | |
echo "$KUBE_CONFIG" > $HOME/.kube/config | |
- | |
name: Deploy Helm Release | |
env: | |
TRAINING_HELM_RELEASE: 'latest' | |
TRAINING_NAMESPACE: 'acend-kubernetes-basics-training-prod' | |
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: 'latest' | |
TRAINING_HELM_NAME: 'acend-kubernetes-basics' | |
TRAINING_NAMESPACE: 'acend-kubernetes-basics-training-prod' | |
run: | | |
kubectl rollout restart deployment/${TRAINING_HELM_RELEASE}-${TRAINING_HELM_NAME}-acend --kubeconfig $HOME/.kube/config --namespace $TRAINING_NAMESPACE | |
kubectl rollout restart deployment/${TRAINING_HELM_RELEASE}-${TRAINING_HELM_NAME}-mobi --kubeconfig $HOME/.kube/config --namespace $TRAINING_NAMESPACE | |
kubectl rollout restart deployment/${TRAINING_HELM_RELEASE}-${TRAINING_HELM_NAME}-openshift --kubeconfig $HOME/.kube/config --namespace $TRAINING_NAMESPACE | |
kubectl rollout restart deployment/${TRAINING_HELM_RELEASE}-${TRAINING_HELM_NAME}-baloise --kubeconfig $HOME/.kube/config --namespace $TRAINING_NAMESPACE | |
kubectl rollout restart deployment/${TRAINING_HELM_RELEASE}-${TRAINING_HELM_NAME}-sbb --kubeconfig $HOME/.kube/config --namespace $TRAINING_NAMESPACE | |
kubectl rollout restart deployment/${TRAINING_HELM_RELEASE}-${TRAINING_HELM_NAME}-bfh --kubeconfig $HOME/.kube/config --namespace $TRAINING_NAMESPACE | |
kubectl rollout restart deployment/${TRAINING_HELM_RELEASE}-${TRAINING_HELM_NAME}-techlab --kubeconfig $HOME/.kube/config --namespace $TRAINING_NAMESPACE |