mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
feat(nginx): update nginx chart with service
This commit is contained in:
+1
-1
@@ -1,6 +1,6 @@
|
||||
name: nginx
|
||||
home: https://www.nginx.com
|
||||
version: 0.1.0
|
||||
version: 0.2.0
|
||||
description: Nginx http service
|
||||
maintainers:
|
||||
- Rimas Mocevicius <rimas@deis.com>
|
||||
|
||||
@@ -2,15 +2,19 @@ apiVersion: v1
|
||||
kind: ReplicationController
|
||||
metadata:
|
||||
name: nginx
|
||||
labels:
|
||||
heritage: helm
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
name: nginx
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
heritage: helm
|
||||
name: nginx
|
||||
spec:
|
||||
containers:
|
||||
- name: nginxhttp
|
||||
- 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
|
||||
Reference in New Issue
Block a user