Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
H
helm3
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
helm3
Commits
6aeb948f
Commit
6aeb948f
authored
Mar 21, 2016
by
Michelle Noorali
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore(examples): add example nginx chart
parent
eaa692fa
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
45 additions
and
0 deletions
+45
-0
Chart.yaml
examples/charts/nginx/Chart.yaml
+13
-0
LICENSE
examples/charts/nginx/LICENSE
+0
-0
README.md
examples/charts/nginx/README.md
+1
-0
nginx-rc.yaml
examples/charts/nginx/templates/nginx-rc.yaml
+18
-0
nginx-svc.yaml
examples/charts/nginx/templates/nginx-svc.yaml
+13
-0
No files found.
examples/charts/nginx/Chart.yaml
0 → 100644
View file @
6aeb948f
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
examples/charts/nginx/LICENSE
0 → 100644
View file @
6aeb948f
examples/charts/nginx/README.md
0 → 100644
View file @
6aeb948f
This is an example of an nginx chart.
examples/charts/nginx/templates/nginx-rc.yaml
0 → 100644
View file @
6aeb948f
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
examples/charts/nginx/templates/nginx-svc.yaml
0 → 100644
View file @
6aeb948f
apiVersion
:
v1
kind
:
Service
metadata
:
name
:
nginx
labels
:
app
:
nginx
spec
:
ports
:
-
port
:
80
protocol
:
TCP
name
:
http
selector
:
name
:
nginx
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment