Created
April 2, 2025 13:59
-
-
Save initcron/b0c181e92b5609b9856404c64588f631 to your computer and use it in GitHub Desktop.
Working Deployment Spec with ConfigMaps
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: vote | |
labels: | |
role: vote | |
annotations: | |
kubernetes.io/change-cause: "image updated to v4" | |
spec: | |
replicas: 4 | |
minReadySeconds: 20 | |
strategy: | |
type: RollingUpdate | |
rollingUpdate: | |
maxSurge: 2 | |
maxUnavailable: 1 | |
selector: | |
matchLabels: | |
app: python | |
role: vote | |
matchExpressions: | |
- key: version | |
operator: Exists | |
template: | |
metadata: | |
name: vote | |
labels: | |
app: python | |
role: vote | |
version: v4 | |
spec: | |
containers: | |
- name: app | |
image: schoolofdevops/vote:v4 | |
envFrom: | |
- configMapRef: | |
name: vote | |
optional: true | |
resources: | |
requests: | |
memory: "64Mi" | |
cpu: "50m" | |
limits: | |
memory: "128Mi" | |
cpu: "250m" | |
volumeMounts: | |
- name: config | |
mountPath: "/app/config" | |
readOnly: true | |
volumes: | |
- name: config | |
configMap: | |
name: vote | |
items: | |
- key: "development_config.py" | |
path: "development_config.py" | |
- key: "production_config.py" | |
path: "production_config.py" | |
optional: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment