Some of my ramlings whilst working with Azure. This includes dev-ops and more.
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
This requires that the required permission is in place.
https://<cust>.visualstudio.com/<project>/_apis/build/status/<folder>/<azure-pipeline-id/name>?branchName=master
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:
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
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) β
"
Sad to see that there is no official thing from Microsoft on this, but oh well. We're now able to deploy so whatevz.
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"
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>"