-
Notifications
You must be signed in to change notification settings - Fork 8.9k
docs: Restructure mock exam files and update solutions for mock exam 1 #196
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
MinWooPark-dotcom
wants to merge
16
commits into
kodekloudhub:master
Choose a base branch
from
MinWooPark-dotcom:docs/mockexam1-solutions
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
docs: Restructure mock exam files and update solutions for mock exam 1 #196
MinWooPark-dotcom
wants to merge
16
commits into
kodekloudhub:master
from
MinWooPark-dotcom:docs/mockexam1-solutions
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Renamed solution for Mock Exam 1 to follow existing naming convention (CKA-MockExam-X-Solution.md) - Moved solution content to new file: 03-CKA-MockExam-1-Solution.md - No content changes made
…with shared volume) - Created a multi-container pod manifest with 3 containers - Used emptyDir for shared volume between containers - Configured NODE_NAME via downward API (fieldRef) - Added busybox containers to write and read from shared volume
…n node01) - SSH into node01 using provided credentials - Installed cri-docker from local .deb package - Enabled cri-docker service to start on boot
- Added names of VerticalPodAutoscaler-related CRDs to /root/vpa-crds.txt - Applied same instructional style as previous questions
… via ClusterIP service) - Used imperative kubectl expose command - Created ClusterIP service named messaging-service on port 6379
…ployment) - Used kubectl create deployment command with image and replicas flag - Deployment name: hr-web-app - Image: kodekloud/webapp-color - Replicas: 2
…orange pod) - Exported the running orange pod manifest using kubectl get -o yaml - Fixed typo in container command: changed 'sleeeep' to 'sleep' - Recreated the pod using kubectl replace with --force flag
… hr-web-app) - Created a NodePort service named hr-web-app-service - Exposes hr-web-app pods on port 8080 via node port 30082 - Uses label selector app=hr-web-app to target the correct pods
…lume pv-analytics) - Created a PersistentVolume named pv-analytics - Storage: 100Mi, AccessMode: ReadWriteMany - Backed by hostPath: /pv/data-analytics
…-deploy) - Created HorizontalPodAutoscaler named webapp-hpa for kkapp-deploy deployment - Target average CPU utilization: 50% - Configured scaleDown behavior with stabilization window of 300 seconds
…ytics-deployment) - Created VerticalPodAutoscaler named analytics-vpa for analytics-deployment - Enabled Auto updateMode to allow eviction and resource adjustment - Targets CPU and memory request optimization in default namespace
…ateway resource) - Created Gateway named web-gateway in namespace nginx-gateway - Uses GatewayClass nginx with an HTTP listener on port 80 - Listener name set to http for protocol HTTP
…sion 18.1.5) - Updated helm repository to fetch latest chart changes - Upgraded kk-mock1 release in kk-ns namespace to nginx chart version 18.1.5
- Fixed chart version to `18.1.15` - Ensured correct namespace and release name usage
7e17341
to
305d7f2
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What does this PR do?
This PR adds a full solution set for Mock Exam 1 and includes the following:
Why?
Closes: #197