Created
March 9, 2025 15:25
-
-
Save kchandan/5d17e7326c19cb38ae1f041aa65589da to your computer and use it in GitHub Desktop.
crashing container pod
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: Pod | |
metadata: | |
name: crashing-app-pod | |
spec: | |
containers: | |
- name: crashing-container | |
image: crashing-app:latest | |
imagePullPolicy: IfNotPresent | |
resources: | |
limits: | |
memory: "1000Mi" | |
cpu: "1" | |
env: | |
- name: REQUIRED_ENV_VAR | |
value: "some_value" | |
volumeMounts: | |
- name: missing-file-volume | |
mountPath: /data | |
volumes: | |
- name: missing-file-volume | |
configMap: | |
name: missing-file-cm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment