Last active
January 20, 2022 13:21
-
-
Save matti/efa458f0027f8b03f5c81e178d198dad to your computer and use it in GitHub Desktop.
kubectl apply -f https://gist.githubusercontent.com/matti/efa458f0027f8b03f5c81e178d198dad/raw/983385e6d2542872c5f7f23bfee02b90b73a3b31/k8s-inflate.yml
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: v1 | |
| kind: Namespace | |
| metadata: | |
| name: inflate-1 | |
| --- | |
| apiVersion: apps/v1 | |
| kind: Deployment | |
| metadata: | |
| name: inflate-1 | |
| namespace: inflate-1 | |
| spec: | |
| replicas: 1 | |
| selector: | |
| matchLabels: | |
| app: inflate-1 | |
| template: | |
| metadata: | |
| labels: | |
| app: inflate-1 | |
| spec: | |
| terminationGracePeriodSeconds: 0 | |
| # nodeSelector: | |
| # something: "yes" | |
| containers: | |
| - name: inflate | |
| image: mattipaksula/bause:user | |
| resources: | |
| requests: | |
| cpu: 1 | |
| limits: | |
| cpu: 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment