Skip to content

Commit 5540fb0

Browse files
author
Sabbir Ahmed
authored
Merge pull request #1006 from Mrinank-Bhowmick/k8s
Update kubernetes.json
2 parents bb95024 + a9bb74a commit 5540fb0

2 files changed

Lines changed: 37 additions & 2 deletions

File tree

data/algorithm-complexity.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -914,6 +914,7 @@
914914
"definition": "স্পেস কমপ্লেক্সিটি",
915915
"code": "O(|V|)"
916916
}
917+
]
917918
},
918919
{
919920
"title": "ব্রেডথ-ফার্স্ট সার্চ (BFS) ট্রি",

data/kubernetes.json

Lines changed: 36 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,12 @@
5151
"code": "kubectl rollout undo deployment/frontend"
5252
},
5353
{
54-
"definition": "পূর্বের সনক্রন ফেরত",
55-
"code": "kubectl rollout undo deployment/frontend"
54+
"definition": "নতুন সনক্রনের অবস্থা",
55+
"code": "kubectl rollout status -w deployment/frontend"
56+
},
57+
{
58+
"definition": "পছন্দের এডিটর ব্যাবহার",
59+
"code": "KUBE_EDITOR=\"nano\" kubectl edit svc/docker-registry"
5660
}
5761
]
5862
},
@@ -81,6 +85,10 @@
8185
{
8286
"definition": "পছন্দের এডিটর ব্যাবহার",
8387
"code": "KUBE_EDITOR=\"nano\" kubectl edit svc/docker-registry"
88+
},
89+
{
90+
"definition": "পোড পুনরায় চালু করা",
91+
"code": "kubectl rollout restart deployment/frontend"
8492
}
8593
]
8694
},
@@ -135,6 +143,32 @@
135143
"code": "kubectl port-forward svc/my-service 5000 "
136144
}
137145
]
146+
},
147+
{
148+
"title": "কুবারনেট ডিপলয়মেন্ট বোঝা",
149+
"items": [
150+
{
151+
"definition": "ডিপলয়মেন্ট লিস্ট করা",
152+
"code": "kubectl get deployments"
153+
},
154+
{
155+
"definition": "ডিপলয়মেন্ট ডিটেইল লিস্ট করা",
156+
"code": "kubectl describe deployment my-deployment"
157+
}
158+
]
159+
},
160+
{
161+
"title": "কুবারনেট সার্ভিস বোঝা",
162+
"items": [
163+
{
164+
"definition": "সার্ভিস লিস্ট করা",
165+
"code": "kubectl get services"
166+
},
167+
{
168+
"definition": "সার্ভিস ডিটেইল লিস্ট করা",
169+
"code": "kubectl describe service my-service"
170+
}
171+
]
138172
}
139173
]
140174
}

0 commit comments

Comments
 (0)