Kubernetes Service Manifest: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 26: Line 26:
=.spec Elements=
=.spec Elements=
==type==
==type==
Optional element. If not specified, it is assumed to be "[[Kubernetes Service Concepts#ClusterIP_Service|ClusterIP]]".
==publishNotReadyAddresses==
==publishNotReadyAddresses==

Revision as of 21:39, 19 September 2020

External

Internal

Example

apiVersion: v1
kind: Service
metadata:
  name: blue
  labels:
    size: large
spec:
  type: ClusterIP
  selector:
    app: blue # Label selector, the service is looking for pods with the label "app=blue"
  ports:
  - port: 8080
    targetPort: 
    protocol: TP

.spec Elements

type

Optional element. If not specified, it is assumed to be "ClusterIP".

publishNotReadyAddresses