Last active
February 28, 2022 20:44
-
-
Save larkintuckerllc/7c9710c6538c2749f6f349bcaafe8a2e 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: my-kubernetes-component | |
labels: | |
backstage.io/kubernetes-id: my-kubernetes-component | |
spec: | |
replicas: 3 | |
selector: | |
matchLabels: | |
app: my-kubernetes-component | |
template: | |
metadata: | |
labels: | |
app: my-kubernetes-component | |
backstage.io/kubernetes-id: my-kubernetes-component | |
spec: | |
containers: | |
- name: ubuntu | |
image: ubuntu | |
command: | |
- /bin/sh | |
args: | |
- -c | |
- "tail -f /dev/null" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment