Skip to content

[hi] Translate to Hindi calico-network-policy.md #51055

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

Merged
merged 5 commits into from
Aug 5, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
reviewers:
- dipesh-rawat
- divya-mohan0209
title: नेटवर्कपॉलिसी के लिए Calico का उपयोग करें
content_type: task
weight: 20
---

<!-- overview -->
यह पेज कुबेरनेट्स पर Calico क्लस्टर बनाने के कुछ त्वरित तरीके दिखाता है।

## {{% heading "prerequisites" %}}

तय करें कि आप [cloud](#creating-a-calico-cluster-with-google-kubernetes-engine-gke) या [local](#creating-a-local-calico-cluster-with-kubeadm) क्लस्टर डिप्लॉय करना चाहते हैं।

<!-- steps -->
## Google कुबेरनेट्स इंजन (GKE) के साथ Calico क्लस्टर बनाना {#creating-a-calico-cluster-with-google-kubernetes-engine-gke}

**पूर्वापेक्षा**: [gcloud](https://cloud.google.com/sdk/docs/quickstarts)

1. Calico के साथ GKE क्लस्टर लॉन्च करने के लिए, `--enable-network-policy` फ्लैग शामिल करें।

**सिंटैक्स**
```shell
gcloud container clusters create [CLUSTER_NAME] --enable-network-policy
```

**उदाहरण**
```shell
gcloud container clusters create my-calico-cluster --enable-network-policy
```

1. डिप्लॉयमेंट को सत्यापित करने के लिए, निम्नलिखित कमांड का उपयोग करें।

```shell
kubectl get pods --namespace=kube-system
```

Calico पॉड्स `calico` से शुरू होते हैं। जांचें कि प्रत्येक की स्थिति `Running` है।

## kubeadm के साथ लोकल Calico क्लस्टर बनाना {#creating-a-local-calico-cluster-with-kubeadm}

kubeadm का उपयोग करके पंद्रह मिनट में एक लोकल सिंगल-होस्ट Calico क्लस्टर प्राप्त करने के लिए,
[Calico क्विकस्टार्ट](https://projectcalico.docs.tigera.io/getting-started/kubernetes/) देखें।

## {{% heading "whatsnext" %}}

एक बार जब आपका क्लस्टर चल रहा हो, तो आप कुबेरनेट्स नेटवर्कपॉलिसी को आज़माने के लिए [नेटवर्क पॉलिसी घोषित करें](/docs/tasks/administer-cluster/declare-network-policy/) का पालन कर सकते हैं।