-
Notifications
You must be signed in to change notification settings - Fork 575
[hi] Localized pod.md #3445
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
oops-shlok
wants to merge
2
commits into
cncf:dev-hi
Choose a base branch
from
oops-shlok:lang-hi-pod
base: dev-hi
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
[hi] Localized pod.md #3445
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
--- | ||
title: पॉड (Pod) | ||
status: Completed | ||
category: अवधारणा | ||
tags: ["infrastructure", "fundamental", ""] | ||
--- | ||
|
||
## यह क्या है | ||
|
||
[कुबेरनेट्स](/kubernetes/) के अंदर पॉड सबसे छोटी और बुनियादी यूनिट होती है जिसे डिप्लॉय किया जा सकता है। | ||
यह कंटेनर-आधारित ऐप्लिकेशनों को चलाने और मैनेज करने का एक ज़रूरी हिस्सा है। | ||
हर पॉड में एक ऐप्लिकेशन का इंस्टेंस होता है और उसमें एक या एक से ज़्यादा [कंटेनर](/container/) हो सकते हैं। | ||
कुबेरनेट्स पॉड्स को एक बड़े डिप्लॉयमेंट का हिस्सा मानकर उन्हें मैनेज करता है और ज़रूरत पड़ने पर इन्हें [वर्टिकली](/vertical-scaling/) या [हॉरिजॉन्टली](/horizontal-scaling/) स्केल किया जा सकता है। | ||
|
||
## समस्या | ||
|
||
कंटेनर आमतौर पर स्वतंत्र रूप से चलते हैं और अपने-अपने टास्क हैंडल करते हैं। | ||
लेकिन कई बार कुछ कंटेनर्स को साथ मिलकर काम करना होता है और उन्हें एक साथ मैनेज करना आसान नहीं होता। | ||
|
||
अगर इन आपस में जुड़े कंटेनर्स को अलग-अलग हैंडल किया जाए, तो मैनेजमेंट का काम काफी ज़्यादा और दोहराव वाला हो जाएगा। | ||
उदाहरण के लिए, ऑपरेटर को यह तय करने के लिए कि वे एक साथ रहें, ये कंटेनर्स एक साथ ही डिप्लॉय हों। | ||
और भले ही इनका लाइफसाइकल एक जैसा हो, फिर भी इन्हें अलग-अलग मैनेज करना पड़ेगा। | ||
|
||
## समाधान | ||
|
||
पॉड्स ऐसे कंटेनर्स को एक साथ ग्रुप कर देते हैं जो आपस में जुड़े हुए हैं, जिससे ऑपरेशन आसान हो जाता है। | ||
उदाहरण के लिए, कोई कंटेनर जो मुख्य कंटेनर को सेटिंग्स देता है, या कोई _साइडकार_ कंटेनर जो नेटवर्क ट्रैफिक हैंडल करता है (देखें [सर्विस मेश](/service-mesh/)), | ||
या फिर कोई कंटेनर जो लॉग्स कलेक्ट करता है, ये सभी पॉड के अंदर एक साथ रखे जा सकते हैं। | ||
|
||
पॉड लेवल पर मेमोरी और CPU को अलॉट किया जा सकता है, जिससे अंदर के कंटेनर ज़रूरत के हिसाब से वो रिसोर्स शेयर कर सकें। | ||
या फिर अगर ज़रूरत हो तो हर कंटेनर को अलग से भी रिसोर्स दिया जा सकता है। |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fluency of reading is changing in this paragraph, fix it. Also make sure to change the links to redirect to hindi localized pages not english ones.