Kubernetes – Labels & Selectors
Labels Labels are key-value pairs which are attached to pods, replication controller and services. They are used as identifying attributes for objects such as pods and replication controller. They can…
Labels Labels are key-value pairs which are attached to pods, replication controller and services. They are used as identifying attributes for objects such as pods and replication controller. They can…
The main function of a job is to create one or more pod and tracks about the success of pods. They ensure that the specified number of pods are completed…
Kubernetes (Docker) images are the key building blocks of Containerized Infrastructure. As of now, we are only supporting Kubernetes to support Docker images. Each container in a pod has its…
It is important to set up the Virtual Datacenter (vDC) before setting up Kubernetes. This can be considered as a set of machines where they can communicate with each other…
The string in PL/SQL is actually a sequence of characters with an optional size specification. The characters could be numeric, letters, blank, special characters, or a combination of all. PL/SQL…
In this chapter, we will discuss the basic architecture of Kubernetes. Kubernetes - Cluster Architecture As seen in the following diagram, Kubernetes follows client-server architecture. Wherein, we have master installed…
Kubernetes is a container management technology developed in Google lab to manage containerized applications in different kind of environments such as physical, virtual, and cloud infrastructure. It is an open…
A GOTO statement in PL/SQL programming language provides an unconditional jump from the GOTO to a labeled statement in the same subprogram. NOTE − The use of the GOTO statement is not recommended…
The CONTINUE statement causes the loop to skip the remainder of its body and immediately retest its condition prior to reiterating. In other words, it forces the next iteration of the loop…
The EXIT statement in PL/SQL programming language has the following two usages − When the EXIT statement is encountered inside a loop, the loop is immediately terminated and the program control resumes…