Course_Practical_Guide_EKS
Course_Practical_Guide_EKS copied to clipboard
Assets for the course "A Practical Guide to Amazon EKS", by A Cloud Guru
fixed dockerfile to run front-end since it was having errors building it below the following error running docker-compose up > [front-end stage-0 4/6] RUN npm install: 53.86 53.86 > [email protected]...
for fixing the issue we need to use for front-end/Dockerfile FROM node:carbon-alpine WORKDIR /opt/forms COPY package*.json ./ RUN apk add --no-cache --virtual .gyp \ python \ make \ g++ \...
Initially I was having an issue with the Subnet tags. I added tag of `kubernetes.io/cluster/eks-acg : shared` into all Subnets. Now I am getting a Security Group problem: ``` $...
As i am almost done with the course, i noticed that the clients-api doesn't work after the CI/CD chapter ``` fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] An unhandled exception has occurred while executing the...
The resource-api microservice would immediately error out and stop working for me when it was unable to contact the x-ray daemon. I don't remember if this was a problem when...
In November 2020, Docker Hub [started enforcing request limits](https://www.docker.com/increase-rate-limits) for fetching images. Because build infrastructure inside AWS CodeBuild is shared, any build job that pulls from Docker Hub is almost...
Remove hardcoded region in clients-api. Update `docker-compose.yaml` to specify region correctly. Note that all AWS SDKs use the `AWS_REGION` environment varible *except* boto3 which uses `AWS_DEFAULT_REGION`.
The clients-api microservice is not able to find the correct DynamoDB table when running locally on docker because it is not reading the `appsettings.Development.json` file where the table name prefix...