Does this describe the role of Control Groups (cgroups) when used with a Docker container? accounting and limiting of resources
Two development teams in your organization use Kubernetes and want to deploy their applications while ensuring that Kubernetes-specific resources, such as secrets, are grouped together for each application.Is this a way to accomplish this?Create one pod and add all the resources needed for each application.
Two development teams in your organization use Kubernetes and want to deploy their applications while ensuring that Kubernetes-specific resources, such as secrets, are grouped together for each application.Is this a way to accomplish this?Create one namespace for each application and add all the resources to it.
Two development teams in your organization use Kubernetes and want to deploy their applications while ensuring that Kubernetes-specific resources, such as secrets, are grouped together for each application.Is this a way to accomplish this?Create a collection for each application.
You created a new service named ‘http’ and discover it is not registering as healthy.Will this command enable you to view the list of historical tasks for this service?‘docker inspect http’
What is the difference between the ADD and COPY Dockerfile instructions? (Choose two.)