You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Test Pod

Create a yaml file to define our pod:


$ vi ubuntu.yaml

apiVersion: v1
kind: Service
metadata:
  name: ubuntu
  labels:
    app: ubuntu
spec:
  type: NodePort
  ports:
    - port: 22
      targetPort: 22
      nodePort: 30022
  selector:
    app: ubuntu
---
apiVersion: apps/v1
kind: Deployment
metadata:
  name: ubuntu
  labels:
    app: ubuntu
spec:
  replicas: 1
  selector:
    matchLabels:
      app: ubuntu
  template:
    metadata:
      labels:
        app: ubuntu
    spec:
      containers:
        - name: ubuntu
          image: rastasheep/ubuntu-sshd:18.04


Deploy it

$ kubectl apply -f ubuntu.yaml


Delete it

kubectl delete -f ubuntu.yaml






References

  • No labels