diff --git a/infra/nigel-k3s/health.yaml b/infra/nigel-k3s/health.yaml new file mode 100644 index 0000000..35b3c51 --- /dev/null +++ b/infra/nigel-k3s/health.yaml @@ -0,0 +1,35 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nginx-deployment + labels: + app: nginx +spec: + replicas: 1 + selector: + matchLabels: + app: nginx + template: + metadata: + labels: + app: nginx + spec: + containers: + - name: nginx + image: nginx:1.14.2 + ports: + - containerPort: 80 + name: nginx-port +--- +apiVersion: v1 +kind: Service +metadata: + name: nginx +spec: + type: NodePort + selector: + app: nginx + ports: + - port: 80 + nodePort: 30808 + targetPort: nginx-port \ No newline at end of file