Created
November 28, 2018 22:26
-
-
Save pjh/d7e51b75ee152a5aed7cf1b6df2a72f6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
its work !