https://github.com/avinash793/k8s-yaml-examples
Repo containing various K8s yaml examples across several use cases.
https://github.com/avinash793/k8s-yaml-examples
development k8s k8s-deployment kubernetes testing yaml yaml-files
Last synced: about 1 month ago
JSON representation
Repo containing various K8s yaml examples across several use cases.
- Host: GitHub
- URL: https://github.com/avinash793/k8s-yaml-examples
- Owner: Avinash793
- Created: 2024-01-14T12:36:36.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-14T17:15:27.000Z (almost 2 years ago)
- Last Synced: 2025-05-15T18:47:24.654Z (5 months ago)
- Topics: development, k8s, k8s-deployment, kubernetes, testing, yaml, yaml-files
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# k8s-yaml-examples
This repository contains various K8s yaml examples across several use cases.
### **NOTE: Open For Contribution**
### Purpose
1. Quick and ready to use K8s yaml examples during development and testing.
2. Reference to create your own custom K8s yaml files.### Few Files Description
**Kube-state-metrics.yaml**: It covers ClusterRole, ClusterRoleBinding, Role,
RoleBinding, ServiceAccount, Service and Deployment K8s Objects.**pod-pvc.yaml**: It covers PersistentVolume, PersistentVolumeClaim and Pod
K8s objects.**deployment-pvc.yaml**: It covers PersistentVolume, PersistentVolumeClaim, S
ervice and Deployment K8s objects.**statefulset-pvc.yaml**: It covers PersistentVolume, PersistentVolumeClaim,
Service and StatefulSet K8s objects.**pod-configmap.yaml**: It covers ConfigMap and Pod K8s objects.
Configmap as Env or as VolumeMount both are covered.**pod-secret.yaml**: It covers Secret and Pod K8s objects.
Secret as Env or as VolumeMount both are covered.**pod-oom-killed.yaml**: Yaml file to simulate OOM Killed event for Pod.