| 12345678910111213141516171819202122232425262728293031323334 |
- apiVersion: apps/v1
- kind: Deployment
- metadata:
- name: hello-kubernetes
- namespace: arcadis
- spec:
- replicas: 1
- selector:
- matchLabels:
- app: hello-kubernetes
- template:
- metadata:
- labels:
- app: hello-kubernetes
- spec:
- containers:
- - name: hello-kubernetes
- image: hashicorp/http-echo
- args:
- - "-text=Arca"
- ports:
- - containerPort: 5678
- ---
- apiVersion: v1
- kind: Service
- metadata:
- name: hello-kubernetes
- namespace: arcadis
- spec:
- selector:
- app: hello-kubernetes
- ports:
- - port: 80
- targetPort: 5678
|