Skip to content

Instantly share code, notes, and snippets.

@pjh
Created November 28, 2018 22:26
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save pjh/d7e51b75ee152a5aed7cf1b6df2a72f6 to your computer and use it in GitHub Desktop.
Save pjh/d7e51b75ee152a5aed7cf1b6df2a72f6 to your computer and use it in GitHub Desktop.
apiVersion: apps/v1
kind: Deployment
metadata:
name: ubuntu-deployment
labels:
app: ubuntu
spec:
replicas: 1
selector:
matchLabels:
app: ubuntu
template:
metadata:
labels:
app: ubuntu
spec:
containers:
- name: ubuntu
image: ubuntu
command: ["sleep", "123456"]
nodeSelector:
beta.kubernetes.io/os: linux
@dridi-mohamed
Copy link

its work !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment