Skip to content

Instantly share code, notes, and snippets.

View sravan-kumard's full-sized avatar

Sravan kumar dannina sravan-kumard

View GitHub Profile
@sravan-kumard
sravan-kumard / nginx_deployment.yaml
Created October 12, 2020 04:52 — forked from petitviolet/nginx_deployment.yaml
sample Nginx configuration on Kubernetes using ConfigMap to configure nginx.
apiVersion: v1
kind: ConfigMap
metadata:
name: nginx-conf
data:
nginx.conf: |
user nginx;
worker_processes 3;
error_log /var/log/nginx/error.log;
events {