mirror of https://github.com/helm/helm
parent
eaa692faf3
commit
6aeb948fb5
@ -0,0 +1,13 @@
|
||||
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
|
@ -0,0 +1 @@
|
||||
This is an example of an nginx chart.
|
@ -0,0 +1,18 @@
|
||||
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
|
@ -0,0 +1,13 @@
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: nginx
|
||||
labels:
|
||||
app: nginx
|
||||
spec:
|
||||
ports:
|
||||
- port: 80
|
||||
protocol: TCP
|
||||
name: http
|
||||
selector:
|
||||
name: nginx
|
Loading…
Reference in new issue