Skip to content

Commit

Permalink
name update
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-kastil committed Sep 11, 2024
1 parent 5b8b745 commit ae36382
Show file tree
Hide file tree
Showing 42 changed files with 56 additions and 56 deletions.
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# These are supported funding model platforms

github: ARambazamba
github: alexander-kastil
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
Expand Down
2 changes: 1 addition & 1 deletion demos/01-enterprise-devops/09-forking/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Example: Getting Updates for Class Material

![forking-wf](_images/forking-workflow.jpg)

Original Repo could be: `https://github.com/ARambazamba/az-400` where `ARambazamba` is the `original-owner-github-username` and `az-400` is the `reponame`
Original Repo could be: `https://github.com/alexander-kastil/az-400` where `alexander-kastil` is the `original-owner-github-username` and `az-400` is the `reponame`

## Listing the current remotes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
org='https://dev.azure.com/integrations-training'
grp=az400-devopsagents
loc=westeurope
img='arambazamba/devopsagentlinux'
img='alexander-kastil/devopsagentlinux'
pool=linux-selfhosted

az group create -n $grp -l $loc
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
org='https://dev.azure.com/integrations-training'
grp=az400-devopsagents
loc=westeurope
img=arambazamba/devopsagentwindows
img=alexander-kastil/devopsagentwindows
agent=aci-win-agent-$RANDOM
pool=win-selfhosted

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Implement & Use a Self-hosted Docker Linux Agent

A production ready version of this agent is published at [DockerHub](https://hub.docker.com/repository/docker/arambazamba/aciagentlinux)
A production ready version of this agent is published at [DockerHub](https://hub.docker.com/repository/docker/alexander-kastil/aciagentlinux)

## Configure Agent Container

Expand Down Expand Up @@ -38,8 +38,8 @@ Build & Upload Linux Agent:

```bash
docker build -t devopsagentlinux .
docker tag devopsagentlinux arambazamba/devopsagentlinux
docker push arambazamba/devopsagentlinux
docker tag devopsagentlinux alexander-kastil/devopsagentlinux
docker push alexander-kastil/devopsagentlinux
```

>Note: Local testing can be done using: `docker run -it --rm aciagentlinux -e AZP_URL=$org -e AZP_TOKEN=$token -e AZP_POOL=$pool`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Build Windows Agent:

```powershell
$agent="devopsagentwindows"
$dockerhubuser="arambazamba"
$dockerhubuser="alexander-kastil"
docker build -t $agent .
docker tag $agent $dockerhubuser/$agent
docker push $dockerhubuser/$agent
Expand Down
6 changes: 3 additions & 3 deletions demos/02-ci/01-pipelines/04-agents/02-test-agents/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ steps:

## .NET Core Test

Test a .NET 6 Build from [MVC-DevOps](https://github.com/arambazamba/mvc-devops) using `./agent-tests/test-agent-net.yml`
Test a .NET 6 Build from [MVC-DevOps](https://github.com/alexander-kastil/mvc-devops) using `./agent-tests/test-agent-net.yml`

To reference you custom pool in yaml use [pool](https://learn.microsoft.com/en-us/azure/devops/pipelines/agents/pools-queues?view=azure-devops&tabs=yaml%2Cbrowser#choosing-a-pool-and-agent-in-your-pipeline)

Expand All @@ -48,7 +48,7 @@ pool:
## Angular Test
Test an Angular Build from [Angular-DevOps](https://github.com/arambazamba/angular-devops) using `./deploy/agent-test.yml`
Test an Angular Build from [Angular-DevOps](https://github.com/alexander-kastil/angular-devops) using `./deploy/agent-test.yml`
```
trigger:
Expand All @@ -67,7 +67,7 @@ stages:
## Microsoft 365 Stack Test
This sample is using `./agent-tests/test-agent-spfx.yml` [https://github.com/arambazamba/spfx-devops](https://github.com/arambazamba/spfx-devops/blob/main/az-pipelines/test-agent-spfx.yml)
This sample is using `./agent-tests/test-agent-spfx.yml` [https://github.com/alexander-kastil/spfx-devops](https://github.com/alexander-kastil/spfx-devops/blob/main/az-pipelines/test-agent-spfx.yml)
Notice the line `RUN /installers/node.sh` in `dockerfile`. It installes Node 14.x, [Gulp](https://gulpjs.com/) that is used to build a [SharePoint Framework Webpart](https://learn.microsoft.com/en-us/sharepoint/dev/spfx/sharepoint-framework-overview) and the [CLI for Microsoft 365](https://pnp.github.io/cli-microsoft365/) that can be used to publish this WebPart later on. By preinstalling this software you can remove the steps from your `*.yaml` and speed up your DevOps.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
Execute `create-agent-vm.azcli` to install the vm in Cloud Shell using:

```bash
curl https://raw.githubusercontent.com/arambazamba/az-400/agents/demos/03-ci/01-agents/05-custom-agents/01-virtual-machines/create-agent-vm.azcli | bash
curl https://raw.githubusercontent.com/alexander-kastil/az-400/agents/demos/03-ci/01-agents/05-custom-agents/01-virtual-machines/create-agent-vm.azcli | bash
```

> Note: If you want to change the vm size use: `az vm list-sizes --location westeurope -o table`
Expand All @@ -20,7 +20,7 @@ Execute `install-sw-devops-agent-vm.ps1` from inside the vm you created in the p

```powershell
Set-ExecutionPolicy Bypass -Scope Process -Force;
Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/arambazamba/az-400/agents/demos/03-ci/01-agents/05-custom-agents/01-virtual-machines/install-sw-devops-agent-vm.ps1'))
Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/alexander-kastil/az-400/agents/demos/03-ci/01-agents/05-custom-agents/01-virtual-machines/install-sw-devops-agent-vm.ps1'))
```

Create an agent pool `AzureVMS` in `https://dev.azure.com/<tenant>/<project>/_settings/agentqueues`
Expand Down
2 changes: 1 addition & 1 deletion demos/02-ci/02-azure-devops/angular/readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Angular Continuous Integration

Samples are included in the Angular repo available at [angular-devops](https://github.com/arambazamba/angular-devops)
Samples are included in the Angular repo available at [angular-devops](https://github.com/alexander-kastil/angular-devops)

Requires [Node 16](https://nodejs.org/en/download/releases/) and Angular

Expand Down
2 changes: 1 addition & 1 deletion demos/02-ci/02-azure-devops/az-function/readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Function Apps Continuous Integration

Samples are included in the Angular repo available at [func-devops](https://github.com/arambazamba/func-devops)
Samples are included in the Angular repo available at [func-devops](https://github.com/alexander-kastil/func-devops)

- Install the [.NET SDK](https://dotnet.microsoft.com/download)
- Install the [Azure Functions Core Tools](https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local?tabs=windows%2Ccsharp%2Cbash#v2)
Expand Down
2 changes: 1 addition & 1 deletion demos/02-ci/02-azure-devops/net-mvc/readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# .NET MVC Continuous Integration

Samples are included in the .NET MVC repo available at [mvc-devops](https://github.com/arambazamba/mvc-devops)
Samples are included in the .NET MVC repo available at [mvc-devops](https://github.com/alexander-kastil/mvc-devops)

Install the [.NET SDK](https://dotnet.microsoft.com/download)

Expand Down
2 changes: 1 addition & 1 deletion demos/02-ci/02-azure-devops/teams/readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Teams Tab using SharePoint Framework (SPFx) Continuous Integration

Uses SPFx Sample Repo [https://github.com/arambazamba/teams-devops](https://github.com/arambazamba/teams-devops)
Uses SPFx Sample Repo [https://github.com/alexander-kastil/teams-devops](https://github.com/alexander-kastil/teams-devops)

## Scaffolding & Basics

Expand Down
4 changes: 2 additions & 2 deletions demos/02-ci/03-github-actions/02-ci-cd/01-web-api/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

- Execute `provision-catalog-api-webapp.azcli`

- Update Publishing Profile in [Secrets](https://github.com/arambazamba/food-app/settings/secrets/actions)
- Update Publishing Profile in [Secrets](https://github.com/alexander-kastil/food-app/settings/secrets/actions)

- Explain [.github/workflows/catalog-api-cicd.yml](https://github.com/arambazamba/food-app/blob/master/.github/workflows/catalog-api-cicd.yml) of repo. Also mention the dispatch trigger
- Explain [.github/workflows/catalog-api-cicd.yml](https://github.com/alexander-kastil/food-app/blob/master/.github/workflows/catalog-api-cicd.yml) of repo. Also mention the dispatch trigger

```yaml
name: catalog-api-cicd
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ env=dev
grp=az400-$env
loc=westeurope
app=foodui-$env
repo="https://github.com/arambazamba/az-400"
repo="https://github.com/alexander-kastil/az-400"

az group create -n $grp -l $loc

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
- Implements Typescript based DoDouble Function
- Multistage Pipeline with build, provision and deployment

Source Code located at [https://github.com/arambazamba/func-devops](https://github.com/arambazamba/func-devops)
Source Code located at [https://github.com/alexander-kastil/func-devops](https://github.com/alexander-kastil/func-devops)

- Execute Provisioning Script

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ spec:
spec:
containers:
- name: foodapi
image: arambazamba/foodapi
image: alexander-kastil/foodapi
imagePullPolicy: Always
ports:
- containerPort: 80
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ spec:
spec:
containers:
- name: foodui
image: arambazamba/foodui
image: alexander-kastil/foodui
imagePullPolicy: Always
ports:
- containerPort: 80
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
## Api

- Create a connection to ACR
- Explain [api-build-deploy-k8s.yml](https://github.com/arambazamba/food-app/blob/master/az-pipelines/api-build-deploy-k8s.yml)
- Explain [api-build-deploy-k8s.yml](https://github.com/alexander-kastil/food-app/blob/master/az-pipelines/api-build-deploy-k8s.yml)
- Create a Kubernetes ressource with implicit Kubernetes Service Connection in environment `foodapp-staging`
![ressource](_images/ressource.png)
- Run pipeline

## UI

- Explain [ng-build-deploy-k8s.yml](https://github.com/arambazamba/food-app/blob/master/az-pipelines/ng-build-deploy-k8s.yml)
- Explain [ng-build-deploy-k8s.yml](https://github.com/alexander-kastil/food-app/blob/master/az-pipelines/ng-build-deploy-k8s.yml)
- Run pipeline
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

![approval](_images/approval.jpg)

- Explain `/deploy/az-pipelines/catalog-api-cicd-gates.yml` from [food-app](https://github.com/arambazamba/food-app)
- Explain `/deploy/az-pipelines/catalog-api-cicd-gates.yml` from [food-app](https://github.com/alexander-kastil/food-app)

```yaml
jobs:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Load testing

- PrimesService gets the count of prime numbers up to a given number and returns the time taken. It also contains a dockerfile to build a docker image which has been published to [Docker Hub](https://hub.docker.com/repository/docker/arambazamba/primesservice):
- PrimesService gets the count of prime numbers up to a given number and returns the time taken. It also contains a dockerfile to build a docker image which has been published to [Docker Hub](https://hub.docker.com/repository/docker/alexander-kastil/primesservice):

```c#
[HttpGet]
Expand Down

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion demos/03-release-strategy/03-testing/03-e2e/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## Demo

Samples are taken from [arambazamba/cypress-e2e](https://github.com/arambazamba/cypress-e2e)
Samples are taken from [alexander-kastil/cypress-e2e](https://github.com/alexander-kastil/cypress-e2e)

Import `cypress-e2e.json`

Expand Down
2 changes: 1 addition & 1 deletion demos/05-iac/01-azure-cli/02-pipeline/readme.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Using Azure CLI Task in pipeline

- Show `catalog-api-build-provision-deploy-cli` from [Food App](https://github.com/arambazamba/food-app/)
- Show `catalog-api-build-provision-deploy-cli` from [Food App](https://github.com/alexander-kastil/food-app/)
2 changes: 1 addition & 1 deletion demos/05-iac/01-azure-cli/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ az appservice plan create -n $appPlan -g $grp --sku B2
> Note: You could also execute `creat-app-service.azcli` or run the following remote script in Cloud Shell
```
curl https://raw.githubusercontent.com/ARambazamba/az-400/master/setup/create-lab-vm.azcli | bash
curl https://raw.githubusercontent.com/alexander-kastil/az-400/master/setup/create-lab-vm.azcli | bash
```

### Create a Lab VM
Expand Down
2 changes: 1 addition & 1 deletion demos/05-iac/02-arm/01-cli/deploy-from-git.azcli
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ grp=az400-m06-arm-$env

az group create -n $grp -l $loc

az deployment group create -g $grp -n fooddeployment$env --template-uri "https://raw.githubusercontent.com/arambazamba/az-400/main/demos/06-iac/02-arm/01-cli/api-azuredeploy.json" --parameters webapp='foodapi-'$env serviceplan='foodplan-'$env
az deployment group create -g $grp -n fooddeployment$env --template-uri "https://raw.githubusercontent.com/alexander-kastil/az-400/main/demos/06-iac/02-arm/01-cli/api-azuredeploy.json" --parameters webapp='foodapi-'$env serviceplan='foodplan-'$env
2 changes: 1 addition & 1 deletion demos/05-iac/02-arm/02-pipeline/readme.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# IaC using ARM Template

- Show `catalog-api-build-provision-deploy-cli.yml` pipeline from [Food App](https://github.com/arambazamba/food-app)
- Show `catalog-api-build-provision-deploy-cli.yml` pipeline from [Food App](https://github.com/alexander-kastil/food-app)
4 changes: 2 additions & 2 deletions demos/08-feedback/01-insights/create-insights-app.azcli
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ env=dev
grp=az400-$env
loc=westeurope
ai=foodapp$env
api=arambazamba/food-catalog-api:1.1.0
ui=arambazamba/food-shop-ui:latest
api=alexander-kastil/food-catalog-api:1.1.0
ui=alexander-kastil/food-shop-ui:latest

az group create -n $grp -l $loc

Expand Down
2 changes: 1 addition & 1 deletion demos/08-feedback/03-teams/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Subscribe to Azure Board Status Change:

Install Azure Pipelines App

Add pipeline [api-build-provision-deploy-cli.yml](https://github.com/arambazamba/food-app/blob/master/az-pipelines/api-build-provision-deploy-cli.yml) and create service connection
Add pipeline [api-build-provision-deploy-cli.yml](https://github.com/alexander-kastil/food-app/blob/master/az-pipelines/api-build-provision-deploy-cli.yml) and create service connection

Start monitoring all pipelines in project

Expand Down
Empty file.
2 changes: 1 addition & 1 deletion setup/lab-vm/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Execute `create-lab-vm.azcli` or run the following remote script in Cloud Shell

```bash
curl https://raw.githubusercontent.com/arambazamba/ng-adv/main/setup/lab-vm/create-lab-vm.azcli | bash
curl https://raw.githubusercontent.com/alexander-kastil/ng-adv/main/setup/lab-vm/create-lab-vm.azcli | bash
```

![create-labvm](_images/create-lab-vm.jpg)
Expand Down
4 changes: 2 additions & 2 deletions setup/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ To install Software run the script `setup-az-400.ps1` from an elevated PowerShel

```powershell
Set-ExecutionPolicy Bypass -Scope Process -Force;
Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/arambazamba/az-400/main/setup/setup-az-400.ps1'))
Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/alexander-kastil/az-400/main/setup/setup-az-400.ps1'))
```

> Note: This script will run for approx 15 min.
Expand All @@ -31,7 +31,7 @@ gh auth login
Fork the class repository:

```bash
gh repo fork https://github.com/arambazamba/az-400/
gh repo fork https://github.com/alexander-kastil/az-400/
```

Download the forked repository:
Expand Down
2 changes: 1 addition & 1 deletion setup/windows-subsystem-linux/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ npm install -g @angular/cli

#### .NET 6 SDK - Optional

>Note: All required .NET Api's are available containerized at [https://hub.docker.com/repositories/arambazamba](https://hub.docker.com/repositories/arambazamba) if you want to skip .NET SDK installation. You need to sign up for a [free Docker Hub account](https://hub.docker.com/) to access the images.
>Note: All required .NET Api's are available containerized at [https://hub.docker.com/repositories/alexander-kastil](https://hub.docker.com/repositories/alexander-kastil) if you want to skip .NET SDK installation. You need to sign up for a [free Docker Hub account](https://hub.docker.com/) to access the images.
Install .NET 6 SDK:

Expand Down
4 changes: 2 additions & 2 deletions src/services/catalog-service/api/dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ ENTRYPOINT ["dotnet", "catalog-service.dll"]
# http://localhost:5051/config

# Publish Image to dockerhub
# docker tag catalog-service arambazamba/catalog-service
# docker push arambazamba/catalog-service
# docker tag catalog-service alexander-kastil/catalog-service
# docker push alexander-kastil/catalog-service
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"documents":{"D:\\git-classes\\az-400\\*":"https://raw.githubusercontent.com/arambazamba/az-400/784078c4322b1d876b5e22ecd5b3c1d49588f2aa/*"}}
{"documents":{"D:\\git-classes\\az-400\\*":"https://raw.githubusercontent.com/alexander-kastil/az-400/784078c4322b1d876b5e22ecd5b3c1d49588f2aa/*"}}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"documents":{"D:\\git-classes\\az-400\\*":"https://raw.githubusercontent.com/arambazamba/az-400/784078c4322b1d876b5e22ecd5b3c1d49588f2aa/*"}}
{"documents":{"D:\\git-classes\\az-400\\*":"https://raw.githubusercontent.com/alexander-kastil/az-400/784078c4322b1d876b5e22ecd5b3c1d49588f2aa/*"}}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"documents":{"E:\\git-classes\\az-native\\*":"https://raw.githubusercontent.com/arambazamba/az-native/7353754e56594824265a6eebbda3b481aeaf958a/*"}}
{"documents":{"E:\\git-classes\\az-native\\*":"https://raw.githubusercontent.com/alexander-kastil/az-native/7353754e56594824265a6eebbda3b481aeaf958a/*"}}
4 changes: 2 additions & 2 deletions src/web/cooking-dashboard/dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ CMD ["/bin/sh", "-c", "envsubst < /usr/share/nginx/html/assets/env.template.js
# browse using http://localhost:5066/

# Publish Image to dockerhub
# docker tag cooking-dashboard arambazamba/cooking-dashboard
# docker push arambazamba/cooking-dashboard
# docker tag cooking-dashboard alexander-kastil/cooking-dashboard
# docker push alexander-kastil/cooking-dashboard
4 changes: 2 additions & 2 deletions src/web/food-shop/dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ CMD ["/bin/sh", "-c", "envsubst < /usr/share/nginx/html/assets/env.template.js
# browse using http://localhost:5053/

# Publish Image to dockerhub
# docker tag food-shop arambazamba/food-shop
# docker push arambazamba/food-shop
# docker tag food-shop alexander-kastil/food-shop
# docker push alexander-kastil/food-shop
6 changes: 3 additions & 3 deletions tooling/00-getting-started/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ git config --global user.email "[email protected]"

## Setup Git and Fork the class repo

Go to `https://github.com/ARambazamba/az-400` and fork the repo or use the GitHub CLI:
Go to `https://github.com/alexander-kastil/az-400` and fork the repo or use the GitHub CLI:

```
gh repo fork https://github.com/arambazamba/az-400
gh repo fork https://github.com/alexander-kastil/az-400
```

![forking-wf](_images/fork.jpg)
Expand All @@ -45,4 +45,4 @@ Clone Class Repo:
git clone https://github.com/Student01/az-400
```

> Note: If you have forked the class repo clone your own fork, otherwise use https://github.com/ARambazamba/az-400
> Note: If you have forked the class repo clone your own fork, otherwise use https://github.com/alexander-kastil/az-400
4 changes: 2 additions & 2 deletions tooling/01-github/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ git pull / git push

![forking-wf](_images/forking-workflow.jpg)

Original Repo could be: `https://github.com/ARambazamba/AZ-204` where `ARambazamba` is the `original-owner-github-username` and `AZ-204` is the `reponame`
Original Repo could be: `https://github.com/alexander-kastil/AZ-204` where `alexander-kastil` is the `original-owner-github-username` and `AZ-204` is the `reponame`

### Listing the current Remotes

Expand Down Expand Up @@ -297,7 +297,7 @@ Fetch from Upstream:
Add a Submodule:

```
git submodule add https://github.com/ARambazamba/FoodApp FoodApp
git submodule add https://github.com/alexander-kastil/FoodApp FoodApp
git commit -m foodapp-submodule
```

Expand Down
Loading

0 comments on commit ae36382

Please sign in to comment.