Accenture
Cloud 1 question
- #1Create AWS IAM Admin User with Group and Policy
You need to set up a new administrative user account for regular use instead of using the root account.
Containers 2 questions
- #2Docker Multi Architecture Image
You have a Dockerfile at
/home/interview/Dockerfilethat needs to be built for multiple architectures to support different hardware platforms. Currently, building withdocker buildonly creates images for the host architecture. - #3Insecure Container Root User
A Dockerfile at
/home/interview/Dockerfilebuilds a Python web application tagged asmyapp:secure. The container runs as the root user (UID 0) with extensive Linux capabilities, violating the principle of least privilege.
Kubernetes 2 questions
- #4Create Namespace
You need to create a new namespace for deploying applications.
- #5OOMKilled Pod Analysis Fix
A memory-intensive application named
oom-demois repeatedly crashing. The pod status showsCrashLoopBackOff, but you need to confirm the underlying cause is an "Out Of Memory" (OOM) error and fix it by increasing the memory limit.