Creating Services through Declarative Syntax
In this lesson, we will learn to create Services through declarative syntax.
Looking into the Syntax
We can accomplish a similar result as the one using kubectl expose
through the svc/go-demo-2-svc.yml
specification.
Press + to interact
cat svc/go-demo-2-svc.yml
The output is as follows.
Press + to interact
apiVersion: v1kind: Servicemetadata:name: go-demo-2spec:type: NodePortports:- port: 28017nodePort: 30001protocol: TCPselector:type: backendservice: go-demo-2
-
Line 1-4: You should be familiar with the meaning of
apiVersion
,kind
, andmetadata
, so we’ll jump straight into thespec
section. -
Line 5: Since we already explored some of the options through the
kubectl expose
command, thespec
should be relatively easy to grasp. -
Line 6: The type of the Service is set to
NodePort
meaning that the ports will be available both within the cluster as well as from outside by sending requests to any of the nodes. ...
Access this course and 1400+ top-rated courses and projects.