Created
January 23, 2023 05:16
-
-
Save initcron/e86e86314fb6bfd6e5495763837ad089 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: ReplicaSet | |
metadata: | |
name: vote | |
labels: | |
role: vote | |
spec: | |
minReadySeconds: 20 | |
replicas: 4 | |
selector: | |
matchLabels: | |
app: python | |
role: vote | |
matchExpressions: | |
- key: version | |
operator: Exists | |
template: | |
metadata: | |
name: vote | |
labels: | |
app: python | |
role: vote | |
version: v1 | |
spec: | |
containers: | |
- name: app | |
image: schoolofdevops/vote:v1 | |
resources: | |
requests: | |
memory: "64Mi" | |
cpu: "50m" | |
limits: | |
memory: "128Mi" | |
cpu: "250m" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment