Merge pull request #11 from rimusz/nginx

Simple nginx chart
This commit is contained in:
Matt Butcher
2015-11-07 17:05:08 -07:00
3 changed files with 28 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
name: nginx
home: https://www.nginx.com
version: 0.1.0
description: Nginx http service
maintainers:
- Rimas Mocevicius <rimas@deis.com>
details:
This chart contains a basic nginx http service useful in verifying proof of concept.
+4
View File
@@ -0,0 +1,4 @@
# Nginx
This Chart provides a basic runing Nginx http service useful in verifying proof of concept.
+16
View File
@@ -0,0 +1,16 @@
apiVersion: v1
kind: ReplicationController
metadata:
name: nginx
spec:
replicas: 1
template:
metadata:
labels:
heritage: helm
spec:
containers:
- name: nginxhttp
image: nginx
ports:
- containerPort: 80