Created
July 16, 2025 04:14
-
-
Save initcron/976787a07f7451d3c5c6c3b6eda12944 to your computer and use it in GitHub Desktop.
Vote Deploymeny Manifests with Resources Configured
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: Deployment | |
| metadata: | |
| creationTimestamp: null | |
| labels: | |
| app: vote | |
| name: vote | |
| spec: | |
| replicas: 2 | |
| selector: | |
| matchLabels: | |
| app: vote | |
| strategy: {} | |
| template: | |
| metadata: | |
| creationTimestamp: null | |
| labels: | |
| app: vote | |
| spec: | |
| containers: | |
| - image: schoolofdevops/vote:v1 | |
| name: vote | |
| resources: | |
| requests: | |
| cpu: "50m" | |
| memory: "64Mi" | |
| limits: | |
| cpu: "250m" | |
| memory: "128Mi" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment