mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
487d08ad11
Signed-off-by: Manuel Buil <mbuil@suse.com>
45 lines
854 B
YAML
45 lines
854 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
labels:
|
|
app: client
|
|
name: client-deployment
|
|
spec:
|
|
replicas: 2
|
|
selector:
|
|
matchLabels:
|
|
app: client
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: client
|
|
spec:
|
|
containers:
|
|
- image: ranchertest/mytestcontainer
|
|
imagePullPolicy: Always
|
|
name: client-curl
|
|
affinity:
|
|
podAntiAffinity:
|
|
requiredDuringSchedulingIgnoredDuringExecution:
|
|
- labelSelector:
|
|
matchExpressions:
|
|
- key: app
|
|
operator: In
|
|
values:
|
|
- client
|
|
topologyKey: kubernetes.io/hostname
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: client-curl
|
|
labels:
|
|
app: client
|
|
service: client-curl
|
|
spec:
|
|
type: ClusterIP
|
|
selector:
|
|
app: client
|
|
ports:
|
|
- port: 8080
|