VVyshnavlalinvyshnavlal.hashnode.dev·Sep 20, 2021 · 2 min readAffinity and Anti-affinityAffinity and Anti-affinity have the same functionality as nodeSeclector. Affinity and Anti-afffinity allow for more complex scheduling than nodeSelector and work with pods as well. You can create rules that are not hard requirements but a preferr...00
VVyshnavlalinvyshnavlal.hashnode.dev·Sep 18, 2021 · 1 min readStatefulSets on KubernetesStateful apps require a stable hostname rather than a pod name with a random string. Using an index, your pod name will have a persistent identification. For example, podname-0, podname-1, and podname-2 (and when the pod is rescheduled, it retains t...00
VVyshnavlalinvyshnavlal.hashnode.dev·Sep 18, 2021 · 1 min readPod Presets on KubernetesPod preset is used to inject information into pods during runtime. Pod presets are used to inject resources such as secrets, configmaps, volumes, and environment variables. Assume you need to deploy 30 apps, each of which requires a unique set of ...00
VVyshnavlalinvyshnavlal.hashnode.dev·Sep 18, 2021 · 1 min readVolumes on KubernetesVolumes in Kubernetes allows you to store data outside the container Using Kubernetes' persist volumes, a volume attached to a container will continue to exist even if the container stops running. The volume will be immediately reattached to the new...00
VVyshnavlalinvyshnavlal.hashnode.dev·Sep 18, 2021 · 1 min readExternal-DNS on KubernetesIngress controller can help you save money on your load balancers while running on public cloud providers. A single load balancer can be used to forward traffic captured from the internet to the ingress control system The ingress controller can b...00