Dear KodeKloud Support Team,
I hope you are doing well.
I am writing to report an issue with the “Volume Share Datacenter” lab on the KodeKloud platform. Despite completing the task correctly and verifying the expected outcomes, the lab result was marked as “Data Not Match.”
Lab Details
- Platform: KodeKloud Engineer
- Task: Volume Share Datacenter
- Environment: Kubernetes
- Status: Failed despite correct implementation
Steps Performed
- Created a pod named volume-share-datacenter .
- Configured two containers using the
fedora:latestimage:
volume-container-datacenter-1volume-container-datacenter-2
- Mounted a shared
emptyDirvolume named volume-share at:
-
/tmp/officialin the first container. -
/tmp/appsin the second container.
- Ensured both containers remained in a running state using sleep commands.
- Created a file inside the first container:
echo "Welcome to xFusionCorp Industries" > /tmp/official/official.txt
- Verified the shared volume by accessing the file from the second container:
cat /tmp/apps/official.txt
The file was successfully accessible and displayed the correct content.
Pod Configuration Used
apiVersion: v1
kind: Pod
metadata:
name: volume-share-datacenter
spec:
containers:
- name: volume-container-datacenter-1
image: fedora:latest
command: ["sleep", "360000"]
volumeMounts:
- name: volume-share
mountPath: /tmp/official
- name: volume-container-datacenter-2
image: fedora:latest
command: ["sleep", "360000"]
volumeMounts:
- name: volume-share
mountPath: /tmp/apps
volumes:
- name: volume-share
emptyDir: {}
Issue Encountered
Although the configuration worked as expected and the shared volume was verified successfully, the lab was marked incorrect with the message:
“Data Not Match.”
This suggests there may be an issue with the automated validation system.
Request
Could you please:
- Review my submission and verify its correctness?
- Confirm whether there is an issue with the lab validation?
- Update the result or provide clarification on any overlooked requirement?
I have attached screenshots for your reference.
Thank you for your support and for maintaining such an excellent learning platform. I look forward to your response.
I am attaching herewith the screenshot for reference.
Best regards,
Pranav

