https://acorn.io/ is a new application deployment framework for Kuberneteshttps://thenewstack.io/kubernetes-just-has-to-get-easier-for-developers/ by the founders of Rancher. Assuming you followed the last tutorial, you should have already deployed the Azure vote Acorn application in Minikube. Let’s modify the application while it is still running without the need to rebuild the images and update the tags in the Kubernetes deployment.

The next step is to create the repository to store the container images of the Acorn application.

aws ecr create-repository \ --repository-name comic-frontend \ --region ap-south-1 \ --no-cli-pager \ --image-scanning-configuration scanOnPush=true aws ecr create-repository \ --repository-name comic-backend \ --region ap-south-1 \ --no-cli-pager \ --image-scanning-configuration scanOnPush=true

Related Articles