Commit 6aeb948f authored by Michelle Noorali's avatar Michelle Noorali

chore(examples): add example nginx chart

parent eaa692fa
name: nginx
home: https://www.nginx.com
version: 0.0.1
description: nginx http service
maintainers:
- Michelle Noorali <michelle@deis.com>
details:
This is a basic nginx http service.
keywords:
- web server
- http
- https
- proxy
This is an example of an nginx chart.
apiVersion: v1
kind: ReplicationController
metadata:
name: nginx
spec:
replicas: 1
selector:
name: nginx
template:
metadata:
labels:
name: nginx
spec:
containers:
- name: nginx
image: nginx
ports:
- containerPort: 80
apiVersion: v1
kind: Service
metadata:
name: nginx
labels:
app: nginx
spec:
ports:
- port: 80
protocol: TCP
name: http
selector:
name: nginx
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment