Created
May 16, 2021 21:59
-
-
Save fpaganetto/778b8cfb716dd752fc155e1987ce54d3 to your computer and use it in GitHub Desktop.
Ubuntu PetSet
This file contains hidden or 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: StatefulSet | |
metadata: | |
name: ubuntu | |
spec: | |
serviceName: "ubuntu" | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: ubuntu | |
template: | |
metadata: | |
labels: | |
app: ubuntu | |
spec: | |
containers: | |
- name: ubuntu | |
image: ubuntu | |
command: [ "/bin/bash", "-ce", "tail -f /dev/null" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment