feat(k8s): support for yaml/json imports

This commit is contained in:
Jaka Hudoklin 2019-04-05 20:27:47 +02:00
parent db5ee88274
commit 5e29229879
No known key found for this signature in database
GPG key ID: 916062A1C4748647
5 changed files with 104 additions and 20 deletions

21
tests/k8s/deployment.yaml Normal file
View file

@ -0,0 +1,21 @@
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.7.9
ports:
- containerPort: 80