12345678910111213141516171819202122232425262728293031 |
- apiVersion: apps/v1
- kind: Deployment
- metadata:
- name: commands-depl
- spec:
- replicas: 1
- selector:
- matchLabels:
- app: commandservice
- template:
- metadata:
- labels:
- app: commandservice
- spec:
- containers:
- - name: commandservice
- image: nathanattkniat/commandservice:latest
- ---
- apiVersion: v1
- kind: Service
- metadata:
- name: commands-clusterip-srv
- spec:
- type: ClusterIP
- selector:
- app: commandservice
- ports:
- - name: commandservice
- protocol: TCP
- port: 80
- targetPort: 80
|