Skip to content

Instantly share code, notes, and snippets.

View sevket-yilmaz's full-sized avatar

Şevket Yılmaz sevket-yilmaz

  • Istanbul, Turkey
View GitHub Profile
@sevket-yilmaz
sevket-yilmaz / grafana_prometheus_node-exporter.yml
Created August 14, 2021 11:47
Installing Grafana, Prometheus & Node Exporter docker compose file
version: "3.7"
networks:
monitor-network:
driver: bridge
services:
prometheus:
image: prom/prometheus
container_name: prometheus
@sevket-yilmaz
sevket-yilmaz / aks_service_example.yml
Created April 9, 2020 20:28
Azure Kubernetes Service - Deployment File Example
apiVersion: v1
kind: Service
metadata:
name: mysampleapp-service
spec:
selector:
app: mysampleapp
ports:
- port: 8080
targetPort: 80
@sevket-yilmaz
sevket-yilmaz / aks_deployment_example.yml
Created April 9, 2020 20:26
Azure Kubernetes Service - Deployment File Example
apiVersion: apps/v1
kind: Deployment
metadata:
name: mysampleapp-deployment
spec:
selector:
matchLabels:
app: mysampleapp
replicas: 1
strategy: