mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-08-09 11:59:48 +00:00
* Add k3s etcd restoration integration test (#5014) * Reorganizing the tests * Fix cleanup * Cleanup github action Signed-off-by: Derek Nola <derek.nola@suse.com> Co-authored-by: Hussein Galal <galal-hussein@users.noreply.github.com>
21 lines
340 B
YAML
21 lines
340 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: nginx-deployment
|
|
labels:
|
|
app: nginx
|
|
spec:
|
|
replicas: 3
|
|
selector:
|
|
matchLabels:
|
|
app: nginx
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: nginx
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: nginx:1.14.2
|
|
ports:
|
|
- containerPort: 80 |