Hello Arentsen, Guido,
Welcome to the Microsoft Q&A and thank you for posting your questions here.
I understand that you are looking for the image mcr.microsoft.com/azuredocs/azure-vote-front:v1 which is not available anymore in Microsoft container registry.
Sorry for any issues this might have caused you. YES! The image mcr.microsoft.com/azuredocs/azure-vote-front:v1
is no longer available. But what you can use is an alternative image or build your own version of the Azure Vote app.
To achieve this, follow the steps below one after the other:
# Clone the Azure Vote App Repository
git clone https://github.com/Azure-Samples/azure-voting-app-redis.git
cd azure-voting-app-redis/azure-vote
# Build the Docker Image
docker build -t azure-vote-front:v1 .
# Tag the Image for Your Azure Container Registry (ACR)
docker tag azure-vote-front:v1 <your_acr_name>.azurecr.io/azure-vote-front:v1
# Push the Image to Your ACR
docker push <your_acr_name>.azurecr.io/azure-vote-front:v1
# Update Your Kubernetes Deployment in YAML as show in below:
# Apply the Updated Deployment
kubectl apply -f azure-vote-deployment.yaml
STEP OMMITTED: Update Your Kubernetes Deployment - Update your Kubernetes deployment YAML file to use the new image:
spec:
containers:
- name: azure-vote-front
image: <your_acr_name>.azurecr.io/azure-vote-front:v1
I hope this is helpful! Do not hesitate to let me know if you have any other questions.
Please don't forget to close up the thread here by upvoting and accept it as an answer if it is helpful.