Creating ReplicaSets
In this lesson, first, we will create a ReplicaSet and then retrieve it.
Looking into the Definition
Let’s take a look at a ReplicaSet based on the Pod we created in the previous chapter.
cat rs/go-demo-2.yml
The output is as follows.
apiVersion: apps/v1beta2kind: ReplicaSetmetadata:name: go-demo-2spec:replicas: 2selector:matchLabels:type: backendservice: go-demo-2template:metadata:labels:type: backendservice: go-demo-2db: mongolanguage: gospec:containers:- name: dbimage: mongo:3.3- name: apiimage: vfarcic/go-demo-2env:- name: DBvalue: localhostlivenessProbe:httpGet:path: /demo/helloport: 8080
The
apiVersion
,kind
, andmetadata
fields are mandatory with all Kubernetes objects. ReplicaSet is no exception, i.e., it is also a Kubernetes object.
-
Line 1: We specified that the
apiVersion
isapps/v1beta2
. At the time of this writing, ReplicaSet is still in beta. Soon it will be considered stable, and you’ll be able to replace the value withapps/v1
. -
Line 2-3: The
kind
isReplicaSet
andmetadata
has thename
key set togo-demo-2
. We could have extended ReplicaSetmetadata
with labels. However, we skipped that part since they would serve only for informational purposes. They do not affect the behavior of the ReplicaSet.
You should be familiar with the above three fields since we already explored them when we worked with Pods. In addition to them, the spec
section is mandatory as well.
-
Line 5-6: The first ...