You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Volume snapshots let you create a copy of your volume at a specific point in time.
1557
1562
</b></details>
1558
1563
1559
1564
<details>
@@ -1568,6 +1573,8 @@ False
1568
1573
1569
1574
<details>
1570
1575
<summary>Explain "Dynamic Provisioning" and "Static Provisioning"</summary><br><b>
1576
+
1577
+
The main difference relies on the moment when you want to configure storage. For instance, if you need to pre-populate data in a volume, you choose static provisioning. Whereas, if you need to create volumes on demand, you go for dynamic provisioning.
1571
1578
</b></details>
1572
1579
1573
1580
<details>
@@ -1602,6 +1609,8 @@ False
1602
1609
1603
1610
<details>
1604
1611
<summary>What is RBAC?</summary><br><b>
1612
+
1613
+
RBAC in Kubernetes is the mechanism that enables you to configure fine-grained and specific sets of permissions that define how a given user, or group of users, can interact with any Kubernetes object in cluster, or in a specific Namespace of cluster.
1605
1614
</b></details>
1606
1615
1607
1616
<details>
@@ -1610,6 +1619,8 @@ False
1610
1619
1611
1620
<details>
1612
1621
<summary>What is the difference between <code>Role</code> and <code>ClusterRole</code> objects?</summary><br><b>
1622
+
1623
+
The difference between them is that a Role is used at a namespace level whereas a ClusterRole is for the entire cluster.
1613
1624
</b></details>
1614
1625
1615
1626
<details>
@@ -1650,12 +1661,17 @@ The pod is automatically assigned with the default service account (in the names
1650
1661
1651
1662
<details>
1652
1663
<summary>Explain the sidecar container pattern</summary><br><b>
1664
+
1665
+
The sidecar pattern is a single-node pattern made up of two containers. The first is the application container. It contains the core logic for the application.
1666
+
Without this container, the application would not exist. In addition to the application container, there is a sidecar container.
1653
1667
</b></details>
1654
1668
1655
1669
#### Kubernetes - CronJob
1656
1670
1657
1671
<details>
1658
1672
<summary>Explain what is CronJob and what is it used for</summary><br><b>
1673
+
1674
+
A CronJob creates Jobs on a repeating schedule. One CronJob object is like one line of a crontab (cron table) file. It runs a job periodically on a given schedule, written in Cron format.
1659
1675
</b></details>
1660
1676
1661
1677
<details>
@@ -1763,7 +1779,7 @@ False. Use secret.
1763
1779
<details>
1764
1780
<summary>Explain "Horizontal Pod Autoscaler"</summary><br><b>
1765
1781
1766
-
Scale the number of pods automatically on observed CPU utilization.
1782
+
In Kubernetes, a HorizontalPodAutoscaler automatically updates a workload resource with the aim of automatically scaling the workload to match demand.
1767
1783
</b></details>
1768
1784
1769
1785
<details>
@@ -1816,6 +1832,8 @@ View more [here](https://www.youtube.com/watch?v=rDCWxkvPlAw)
1816
1832
1817
1833
<details>
1818
1834
<summary>Explain Labels. What are they and why would one use them?</summary><br><b>
1835
+
1836
+
Kubernetes labels are key-value pairs that can connect identifying metadata with Kubernetes objects.
1819
1837
</b></details>
1820
1838
1821
1839
<details>
@@ -2001,6 +2019,8 @@ You can learn more [here](https://submariner-io.github.io)
2001
2019
2002
2020
<details>
2003
2021
<summary>What is Istio? What is it used for?</summary><br><b>
2022
+
2023
+
Istio is an open source service mesh that helps organizations run distributed, microservices-based apps anywhere. Istio enables organizations to secure, connect, and monitor microservices, so they can modernize their enterprise apps more swiftly and securely.
0 commit comments