diff --git a/hello-k8s/k8s/nginx copy.yaml b/hello-k8s/k8s/nginx copy.yaml new file mode 100644 index 0000000..03d175e --- /dev/null +++ b/hello-k8s/k8s/nginx copy.yaml @@ -0,0 +1,14 @@ +apiVersion: v1 +kind: Pod +metadata: + name: nginx1 + labels: + env: test + team: team1 +spec: + containers: + - name: nginx1 + image: nginx + imagePullPolicy: IfNotPresent + nodeSelector: + disktype: ssd \ No newline at end of file diff --git a/hello-k8s/k8s/nginx.yaml b/hello-k8s/k8s/nginx.yaml new file mode 100644 index 0000000..195f4b7 --- /dev/null +++ b/hello-k8s/k8s/nginx.yaml @@ -0,0 +1,13 @@ +apiVersion: v1 +kind: Pod +metadata: + name: nginx1 + labels: + env: test + team: team1 +spec: + containers: + - name: nginx1 + image: nginx + imagePullPolicy: IfNotPresent + \ No newline at end of file