Nutanix Certified Professional - Cloud Native (NCP-CN-6.10) NCP-CN Question # 24 Topic 3 Discussion

Nutanix Certified Professional - Cloud Native (NCP-CN-6.10) NCP-CN Question # 24 Topic 3 Discussion

NCP-CN Exam Topic 3 Question 24 Discussion:
Question #: 24
Topic #: 3

A dev team needed to optimize their logging system to be more robust, because the CPU and memory limits were insufficient, which caused delays in log collection and processing during times of high demand.

After a deep performance analysis, they decided to increase the CPU limits from 1 to 4 and the memory from 1000Mi to 4Gi.

Which ConfigMap should the development team run with custom resource requests and limit values for fluentd?


A.

bash

Copy

[nutanix@nkp-boot ~]$ cat < configmap.yaml

apiVersion v1

kind ConfigMap

metadata

name logging-operator-logging-overrides

namespace kommander

data

values.yaml |

fluentd

resources

limits

cpu 1

memory 1000Mi

requests

cpu 4

memory 4Gi

EOF


B.

bash

Copy

[nutanix@nkp-boot ~]$ cat < configmap.yaml

apiVersion: v1

kind: ConfigMap

metadata:

name: logging-operator-logging-overrides

namespace: kommander

data:

values.yaml: |

fluentd:

resources:

limits:

cpu: 4

memory: 4Gi

requests:

cpu: 4

memory: 4Gi

EOF


C.

bash

Copy

[nutanix@nkp-boot ~]$ cat < configmap.yaml

apiVersion v1

kind ConfigMap

metadata

name logging-operator-logging-overrides

namespace kommander

data

values.yaml |

fluentd

resources

limits

cpu 4

EOF

values.yaml |

fluentd

resources

limits

cpu 4

memory 4Gi

requests

cpu 1

memory 1000Mi


D.

bash

Copy

[nutanix@nkp-boot ~]$ cat < configmap.yaml

apiVersion: v1

kind: ConfigMap

metadata:

name: logging-operator-logging-overrides

namespace: kommander

data:

values.yaml: |

fluentd

resources

limits

cpu 4

memory 1000Mi

requests

cpu 1

memory 4Gi

EOF


Get Premium NCP-CN Questions

Contribute your Thoughts:


Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.