Skip to content

Instantly share code, notes, and snippets.

@vegaasen
Last active March 3, 2022 09:33
Show Gist options
  • Save vegaasen/eec891d8b622278416fac2d540d70159 to your computer and use it in GitHub Desktop.
Save vegaasen/eec891d8b622278416fac2d540d70159 to your computer and use it in GitHub Desktop.
Azure misc

Azure features, trix and whatnotz

Some of my ramlings whilst working with Azure. This includes dev-ops and more.

Badges

Badge for package-versions within feed

This requires that the permission is defined on the feed itself.

https://<cust>.feeds.visualstudio.com/<project>/_apis/public/Packaging/Feeds/<feedId>/Packages/<PackageId>/Badge

Badge for pipeline status

This requires that the required permission is in place.

https://<cust>.visualstudio.com/<project>/_apis/build/status/<folder>/<azure-pipeline-id/name>?branchName=master

Scripts

Azure Static Web Apps - Upload :)

After changing from Blob Storage + a pod-based deployment to this amazing new service for our React app (built using Vite), we noticed that there is apperantly no way on uploading something to Azure Static Web Apps from Micro$oft. So - obviously we had to create some stuff for this manually.. doh :<.

After looking in to the Github Action script that is used, there is a Docker thing being used whilst uploading. Reference: https://github.com/Azure/static-web-apps-deploy

So, I ended up with these two files:

Dockerfile

Filename: Dockerfile-local-deploy

FROM mcr.microsoft.com/appsvc/staticappsclient

ARG apiToken

RUN rm -rf ./frontend
COPY build ./frontend

RUN /bin/staticsites/StaticSitesClient   upload --app ./frontend --skipAppBuild true --apiToken $apiToken

Deploy-script

This relies on a file named .api-token which contains the api-token/deployment token for the azure static web app


echo -e "\n@@@@@@@@@@@\nASWA-UPLOADER2000\n@@@@@@@@@@@\n"
echo "⏳ Building application"
yarn build
echo "⏳ Adding some random stuff to the version.txt file"
echo -e "\n(LOCAL@`uname -n` at `date`)\nflip flop, yo\n" >> build/version.txt

echo "πŸ™Œ Application built"
echo "⏳ Attempting to run Dockerfile and upload the built application"

if [[ ! -f ".api-token" ]]; then
  echo "πŸ’₯πŸ’₯ You're missing a vital file, bruh πŸ’₯πŸ’₯"
  echo "1. Add file named .api-token"
  echo "2. Go to Azure and locate the deployment token for the QA container"
  echo "3. Copy that token in to the .api-token-file"
  echo "4. Done βœ…"
  exit 1
fi

apiToken=`cat .api-token`
echo "πŸ” Using ${apiToken} as deployment token for SWA"

docker build --build-arg apiToken=${apiToken} -f Dockerfile-local-deploy .

echo "βœ… Application deployed (maybe) βœ…"

Conclusion

Sad to see that there is no official thing from Microsoft on this, but oh well. We're now able to deploy so whatevz.

Unfuck states with azure

p-112-100-00027 :: ~/scripts Β» cat unfuck_azure_docker.sh                                                                                                                                                                                                               130 ↡
echo "Unfucker for Azure K8S/Docker (v0.5.5.21)"
echo "-----------------------------"

echo "Logging in to Azure"
az login

echo "βœ… Logged in to Azure"
echo "Set correct subscription"
az account set --subscription <subscription-id>

echo "βœ… Configured subscription AZ"
echo "Fetching k8s credentials (for QA)"
az aks get-credentials -g <group> -n <namespace>

echo "βœ… Logged in to AZ K8s"
echo "Logging in to docker on azure"
az aks get-credentials --resource-group <group> --name <namespace>

echo "βœ… Logged in to docker on azure"
echo "Fetching cluster info (You may need to log in :-)"
kubectl cluster-info

echo "βœ… TOTALLY U N F U C K E D"

Pipeline

Build and auto-increment node based projects

name: $(BuildID)-$(SourceBranchName)_$(rev:.r)
trigger:
  batch: true
  branches:
    include:
      - "*"
pr: none
pool:
  vmImage: "ubuntu-latest"
stages:
  - stage: BuildLibrary
    displayName: "Build internal librar"
    jobs:
      - job:
        displayName: "Compile, test and (perhaps) deploy library"
        steps:
          - bash: |
              GIT_REMOTE_URL=$(git config --get remote.origin.url | sed 's/https:\/\//https:\/\/$(github.username):$(github.access-token)@/1').git
              echo "##vso[task.setvariable variable=build.git-repository-url]$GIT_REMOTE_URL"
              echo $GIT_REMOTE_URL
            displayName: "Configure repositoryUrl"
          - task: npmAuthenticate@0
            displayName: "Auth access to feeds"
            inputs:
              workingFile: ./.npmrc
          - task: Npm@1
            displayName: "Npm install"
            inputs:
              command: "install"
              workingDir: "."
              customRegistry: "useFeed"
              customFeed: "<feedId>/<packageId>"
          - script: npm test
            displayName: "Run tests"
          - task: PowerShell@2
            displayName: "Npm version bumper"
            condition: "and(always(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))"
            inputs:
              targetType: "inline"
              script: |
                $BranchName = "$(Build.SourceBranch)" -replace "refs/heads/"
                git checkout $BranchName
                git config --global user.email "[email protected]"
                git config --global user.name "Bob the Builder"
                npm version patch -m "[Azure] ✨ Autoincrementing version %s ✨ [skip ci]" --force
                git remote set-url origin $(build.git-repository-url)
                git push
          - task: Npm@0
            displayName: "Npm publish"
            condition: "and(always(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))"
            inputs:
              command: "publish"
              workingDir: "."
              publishRegistry: "useFeed"
              publishFeed: "<feedId>/<packageId>"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment